> I probably should have mentioned that SocketReceiver, > SocketHubReceiver, and > JMSReceiver are all currently implemented and available in > the cvs.
I probably should have checked .. :) > The configuration for the event "sink": > > <?xml version="1.0" encoding="UTF-8" ?> > <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> > > <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" > debug="true"> > <!-- > <appender name="stdout" class="org.apache.log4j.ConsoleAppender"> > <layout class="org.apache.log4j.PatternLayout"> > <param name="ConversionPattern" value="%d{ABSOLUTE} %c{1}: > %m%n"/> > </layout> > </appender> > --> > > <appender name="A1" class="org.apache.log4j.FileAppender"> > <param name="File" value="output/filters.PluginsTest.txt" /> > <param name="Append" value="false" /> > > <layout class="org.apache.log4j.PatternLayout"> > <param name="ConversionPattern" > value="%d{ABSOLUTE} %c: %m%n"/> > </layout> > </appender> > > <plugin name="SocketReceiver" > class="org.apache.log4j.net.SocketReceiver"> > <param name="Port" value="5000"/> > </plugin> > > <root> > <level value="debug"/> > <appender-ref ref="A1" /> > </root> > </log4j:configuration> I can't seem to find the filters.PluginsTest.txt file in HEAD.? I'll need to read up more about the plugin's tag and what it means to fully grasp the above, but I can guess that somehow the SocketReceiver will also receive the events coming from the Root logger via the appender-ref, but I'm not clear where/how that relationship is defined (possibly in the pluginsTest.txt file I can't seem to find?). cheers, Paul --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]