12345678910111213141516171819202122232425262728293031 |
- # For JBoss: Avoid to setup Log4J outside $JBOSS_HOME/server/default/deploy/log4j.xml!
- # For all other servers: Comment out the Log4J listener in web.xml to activate Log4J.
- log4j.rootLogger=ERROR, stdout, logfile
- log4j.appender.stdout=org.apache.log4j.ConsoleAppender
- log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
- log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - <%m>%n
- log4j.appender.logfile=org.apache.log4j.RollingFileAppender
- log4j.appender.logfile.File=cas.log
- log4j.appender.logfile.MaxFileSize=512KB
- # Keep three backup files.
- log4j.appender.logfile.MaxBackupIndex=3
- # Pattern to output: date priority [category] - message
- log4j.appender.logfile.layout=org.apache.log4j.PatternLayout
- log4j.appender.logfile.layout.ConversionPattern=%d %p [%c] - %m%n
- # WARNING: Setting the org.springframework logger to DEBUG displays debug information about
- # the request parameter values being bound to the command objects. This could expose your
- # password in the log file. If you are sharing your log files, it is recommend you selectively
- # apply DEBUG level logging on a an org.springframework.* package level (i.e. org.springframework.dao)
- log4j.logger.org.springframework=WARN
- #log4j.logger.org.springframework.web.servlet.i18n=DEBUG
- #log4j.logger.org.springframework.web.servlet.view=DEBUG
- #log4j.logger.org.quartz=DEBUG
- log4j.logger.org.jasig=INFO
- #log4j.logger.org.jasig.cas.authentication=DEBUG
- #log4j.logger.org.jasig.cas.web.flow.TicketGrantingTicketCheckAction=DEBUG
- #log4j.logger.org.jasig.cas.services.DefaultServiceRegistry=DEBUG
- #log4j.logger.org.org.jasig.cas.services=DEBUG
|