User: starksm 
  Date: 01/07/13 11:43:54

  Modified:    src/etc/conf/default log4j.properties
  Log:
  Add a sample format useful for debugging concurrency issues.
  Document the custom TRACE priority a little bit more
  
  Revision  Changes    Path
  1.10      +7 -2      jboss/src/etc/conf/default/log4j.properties
  
  Index: log4j.properties
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/log4j.properties,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- log4j.properties  2001/07/11 21:48:48     1.9
  +++ log4j.properties  2001/07/13 18:43:54     1.10
  @@ -11,8 +11,10 @@
   log4j.appender.Default=org.apache.log4j.FileAppender
   log4j.appender.Default.File=../log/server.log
   log4j.appender.Default.layout=org.apache.log4j.PatternLayout
  -# Format is [Category] msg\n
  +# A default format: [Category] msg\n
   log4j.appender.Default.layout.ConversionPattern=[%c{1},%p] %m%n
  +# A format useful for debugging concurrency: [Category,thread,elapased_ms] msg\n
  +#log4j.appender.Default.layout.ConversionPattern=[%c{1},%t,%r] %m%n
   # Truncate if it aleady exists.
   log4j.appender.Default.Append=false
   
  @@ -27,6 +29,9 @@
   # Example of only showing INFO msgs for any categories under org.jboss.util
   #log4j.category.org.jboss.util=INFO
   
  -# Turn on TRACE level msgs for the org.jboss.ejb.plugins package
  +# An example of enabling the custom TRACE level priority that is used
  +# by the JBoss internals to diagnose low level details. This example
  +# turns on TRACE level msgs for the org.jboss.ejb.plugins package and its
  +# subpackages. This will produce A LOT of logging output.
   #log4j.category.org.jboss.ejb.plugins=TRACE#org.jboss.logging.log4j.TracePriority
   
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to