Advertisement
Guest User

Untitled

a guest
Jan 4th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. log4j.rootLogger=INFO, rollingFile, stdout
  2.  
  3. # Reduce the log information from Spring
  4. log4j.logger.org.springframework=ERROR
  5.  
  6. log4j.appender.stdout=org.apache.log4j.ConsoleAppender
  7. log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
  8. log4j.appender.stdout.layout.ConversionPattern=%6p [%d{HH:mm:ss}] %c{1}@%L: %m%n
  9.  
  10. log4j.appender.rollingFile=org.apache.log4j.RollingFileAppender
  11.  
  12. # Please make sure the path specified by log4j.appender.rollingFile.File is a
  13. # location where the system user running Tomcat has write access.
  14. # Otherwise, the secore log can only be found in catalina.out
  15. log4j.appender.rollingFile.File=/opt/rasdaman/log/secore.log
  16.  
  17. log4j.appender.rollingFile.MaxFileSize=100MB
  18. log4j.appender.rollingFile.MaxBackupIndex=10
  19. log4j.appender.rollingFile.layout=org.apache.log4j.PatternLayout
  20. log4j.appender.rollingFile.layout.ConversionPattern=%6p [%d{HH:mm:ss}] %c{1}@%L: %m%n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement