Author: sdeboy
Date: Wed May  5 07:17:00 2010
New Revision: 941180

URL: http://svn.apache.org/viewvc?rev=941180&view=rev
Log:
added support for 'custom level definitions' in LogFilePatternReceiver, which 
allows the user to map strings in the log file to Log4j levels
if there are extra spaces that would prevent a pattern from matching, strip 
them out
exclude empty lines (if appendNonMatches was false, would add an empty line to 
the log)

With these changes, redirection of Android logging via 'logcat -v time' will 
now render fine in Chainsaw, using:
<param name="logFormat" value="TIMESTAMP LEVEL/LOGGER(PROP(PID)):MESSAGE"/> 
<param name="customLevelDefinitions" 
value="V=TRACE,D=DEBUG,I=INFO,W=WARN,E=ERROR,F=FATAL,S=OFF"/>

Modified:
    
logging/chainsaw/trunk/src/main/java/org/apache/log4j/chainsaw/vfs/VFSLogFilePatternReceiverBeanInfo.java

Modified: 
logging/chainsaw/trunk/src/main/java/org/apache/log4j/chainsaw/vfs/VFSLogFilePatternReceiverBeanInfo.java
URL: 
http://svn.apache.org/viewvc/logging/chainsaw/trunk/src/main/java/org/apache/log4j/chainsaw/vfs/VFSLogFilePatternReceiverBeanInfo.java?rev=941180&r1=941179&r2=941180&view=diff
==============================================================================
--- 
logging/chainsaw/trunk/src/main/java/org/apache/log4j/chainsaw/vfs/VFSLogFilePatternReceiverBeanInfo.java
 (original)
+++ 
logging/chainsaw/trunk/src/main/java/org/apache/log4j/chainsaw/vfs/VFSLogFilePatternReceiverBeanInfo.java
 Wed May  5 07:17:00 2010
@@ -41,6 +41,7 @@ public class VFSLogFilePatternReceiverBe
         new PropertyDescriptor("autoReconnect", 
VFSLogFilePatternReceiver.class),
         new PropertyDescriptor("waitMillis", VFSLogFilePatternReceiver.class),
         new PropertyDescriptor("appendNonMatches", 
VFSLogFilePatternReceiver.class),
+        new PropertyDescriptor("customLevelDefinitions", 
VFSLogFilePatternReceiver.class),
         new PropertyDescriptor(
           "filterExpression", VFSLogFilePatternReceiver.class),
           new PropertyDescriptor(


Reply via email to