/archetypes/scalate-archetypes-itests/src/test/resources/log4j.properties

http://github.com/scalate/scalate · Properties File · 38 lines · 10 code · 5 blank · 23 comment · 0 complexity · 217015564854ddb4425054e7dad0020a MD5 · raw file

  1. #
  2. # Copyright (C) 2009-2010 the original author or authors.
  3. # See the notice.md file distributed with this work for additional
  4. # information regarding copyright ownership.
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18. #
  19. # The logging properties used during tests..
  20. #
  21. log4j.rootLogger=INFO, out, file
  22. #log4j.logger.org.apache.maven=DEBUG
  23. # CONSOLE appender not used by default
  24. log4j.appender.out=org.apache.log4j.ConsoleAppender
  25. log4j.appender.out.layout=org.apache.log4j.PatternLayout
  26. log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
  27. # File appender
  28. log4j.appender.file=org.apache.log4j.FileAppender
  29. log4j.appender.file.layout=org.apache.log4j.PatternLayout
  30. log4j.appender.file.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
  31. log4j.appender.file.file=target/output.log
  32. log4j.appender.file.append=true
  33. log4j.throwableRenderer=org.apache.log4j.EnhancedThrowableRenderer