You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2005/09/06 23:25:38 UTC

svn commit: r279119 - /incubator/roller/trunk/web/WEB-INF/classes/log4j.properties

Author: agilliland
Date: Tue Sep  6 14:25:36 2005
New Revision: 279119

URL: http://svn.apache.org/viewcvs?rev=279119&view=rev
Log:
updating log4j default config to use the DailyRollingFileAppender and removing stdout appender.


Modified:
    incubator/roller/trunk/web/WEB-INF/classes/log4j.properties

Modified: incubator/roller/trunk/web/WEB-INF/classes/log4j.properties
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/web/WEB-INF/classes/log4j.properties?rev=279119&r1=279118&r2=279119&view=diff
==============================================================================
--- incubator/roller/trunk/web/WEB-INF/classes/log4j.properties (original)
+++ incubator/roller/trunk/web/WEB-INF/classes/log4j.properties Tue Sep  6 14:25:36 2005
@@ -1,43 +1,20 @@
 # Properties for configuring Log4j for this application
 # This is the configuring for logging displayed in the Application Server
-# log4j.rootCategory=INFO, stdout, R, mail
-log4j.rootCategory=INFO, stdout, R
+log4j.rootCategory=INFO, roller
 
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-
-# Pattern to output the caller's file name and line number.
-#log4j.appender.stdout.layout.ConversionPattern=%p [%t] [%c] %C{1}.%M(%L) | %m%n
-log4j.appender.stdout.layout.ConversionPattern=%-5p %d{yyyy-MM-dd HH:mm:ss,SSS} | %C{1}:%M | %m%n
-
-log4j.appender.R=org.apache.log4j.RollingFileAppender
-log4j.appender.R.File=${catalina.base}/logs/roller.log
-
-# Keep two 1MB log backup files
-log4j.appender.R.MaxFileSize=1MB
-log4j.appender.R.MaxBackupIndex=2
-
-log4j.appender.R.layout=org.apache.log4j.PatternLayout
-#log4j.appender.R.layout.ConversionPattern=%5p %t %c - %m%n
-log4j.appender.R.layout.ConversionPattern=%-5p %d{yyyy-MM-dd HH:mm:ss,SSS} %C{1}:%M - %m%n
-
-# If programmed properly the most messages would be at DEBUG
-# and the least at FATAL.
+log4j.appender.roller=org.apache.log4j.DailyRollingFileAppender
+log4j.appender.roller.File=${catalina.base}/logs/roller.log
+log4j.appender.roller.layout=org.apache.log4j.PatternLayout
+log4j.appender.roller.layout.ConversionPattern=%-5p %d{yyyy-MM-dd HH:mm:ss,SSS} %C{1}:%M - %m%n
 
 # Options are: DEBUG, INFO, WARN, ERROR, FATAL
 log4j.category.org.roller=INFO
 log4j.category.com.ecyrd.jspwiki=ERROR
 log4j.category.com.opensymphony.oscache=ERROR
 log4j.category.net.sf.hibernate=ERROR
-log4j.category.org.roller.business.utils=INFO
 log4j.category.org.apache.struts=ERROR
 log4j.category.org.tuckey.web.filters.urlrewrite=DEBUG
 
-#log4j.category.org.roller.presentation.MainPageAction=DEBUG
-#log4j.category.org.roller.presentation.pagecache.rollercache.LRUCacheHandler=DEBUG
-#log4j.category.org.roller.presentation.filters.IfModifiedFilter=DEBUG
-#log4j.category.org.roller.persistence.hibernate.HibernateStrategy=DEBUG
-
 # Tomcat's ClientAbortExceptions cause Velocity to talk way
 # too much so by default Velocity is set to STFU mode.
 log4j.category.org.apache.velocity=FATAL
@@ -53,5 +30,3 @@
 
 #log4j.appender.mail.layout=org.apache.log4j.PatternLayout
 #log4j.appender.mail.layout.ConversionPattern=%p [%d{yyyy-MM-dd HH:mm:ss,SSS}] %C{1}.%M(%L) | %m%n
-
-