From: <rv...@us...> - 2012-02-02 21:10:23
|
Revision: 1043 http://treebase.svn.sourceforge.net/treebase/?rev=1043&view=rev Author: rvos Date: 2012-02-02 21:10:13 +0000 (Thu, 02 Feb 2012) Log Message: ----------- Log4J now no longer displays the file and line where the logging event was called, which means it doesn't have to generate "caller location information" - which apparently is "extremely slow and should be avoided unless execution speed is not an issue". It does now show the thread name, so we can compare with melody to see if we can find what makes some threads hang. Modified Paths: -------------- trunk/treebase-core/src/main/resources/log4j.xml Modified: trunk/treebase-core/src/main/resources/log4j.xml =================================================================== --- trunk/treebase-core/src/main/resources/log4j.xml 2012-02-02 14:22:35 UTC (rev 1042) +++ trunk/treebase-core/src/main/resources/log4j.xml 2012-02-02 21:10:13 UTC (rev 1043) @@ -21,7 +21,7 @@ <param name="MaxFileSize" value="900KB"/> <param name="MaxBackupIndex" value="9"/> <layout class="org.apache.log4j.PatternLayout"> - <param name="ConversionPattern" value="%d %-5p %-17c{2} (%30F:%L) %3x - %m%n"/> + <param name="ConversionPattern" value="%d %-5p %-17c{2} (thread: %t) %3x - %m%n"/> </layout> </appender> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |