# Direct log messages to stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %m%n # Root logger option log4j.rootLogger=INFO, stdout # Set up the default logging to be INFO level, then override specific units log4j.logger.org.modeshape=INFO log4j.logger.org.infinispan=INFO log4j.logger.com.mchange.v2.c3p0=WARN log4j.logger.org.apache.jackrabbit.test=WARN log4j.logger.org.modeshape.jcr.tck=WARN # This line turns off INFO messages in the org.infinispan.factories.GlobalComponentRegistries # class. As of Infinispan 5.1.0.BETA4, Infinispan logs its version information every time # a new cache manager (?) is instantiated, and this next line turns it off. This may # affect a few other log messages, so this should be removed as soon as Infinispan # logs the message only once; see https://issues.jboss.org/browse/ISPN-1518 log4j.logger.org.infinispan.factories.GlobalComponentRegistry=OFF # This line turns on TRACING messages in the LuceneSearchIndex, which show which # operations are being performed on the index (including the data going into the index) ... #log4j.logger.org.modeshape.search.lucene=TRACE #log4j.logger.org.modeshape.sequencer.cnd=DEBUG