Eliminate Duplicate Logging in log4net - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T11:27:31Zhttp://stackoverflow.com/feeds/question/651277http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/651277/eliminate-duplicate-logging-in-log4net4Eliminate Duplicate Logging in log4netCraig Walker2009-03-16T17:02:22Z2009-07-29T16:21:01Z
<p>I have a program that makes many log4net calls to the "myprogram" loggers. It also calls other code that makes log4net calls to other loggers. I want to capture all logs higher than INFO for "myprogram" and all logs higher than WARN for everything else. This way, I get the work-in-progress messages specific to the task I'm working on, but am still notified of potentially bad things happening in the supporting code. I want this sent to both Console and a log file.</p>
<p>I have the following log4net config:</p>
<pre><code><log4net>
<root>
<level value="WARN" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</root>
<logger name="myprogram">
<level value="INFO" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</logger>
<appender name="Console" type="log4net.Appender.ConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%message%newline" />
</layout>
<threshold value="INFO" />
</appender>
<appender name="LogFile" type="log4net.Appender.RollingFileAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="- %utcdate %level %logger %ndc %thread %message%newline" />
</layout>
<appendToFile value="false" />
<staticLogFileName value="true" />
<rollingStyle value="Once" />
<file value="mylogfile" />
<immediateFlush value="true" />
<threshold value="INFO" />
<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
</appender>
</log4net>
</code></pre>
<p>This makes perfect sense to me: log >WARN for everything and >INFO for the specific "myprogram" logger.</p>
<p>The problem is that I'm getting INFO messages logged <strong>twice</strong> on both Console and LogFile. This only happens if I have both the and elements filled though; if I remove either one, then the remaining one works as I expect. </p>
<p>I could understand if I was getting double-logging of WARN entries (since myprogram matches both "root" and "myprogram"), but it's happening at INFO even though ROOT is (presumably) set to WARN. </p>
<p>Am I doing something wrong here, or is this a log4net bug/ambiguity?</p>
http://stackoverflow.com/questions/651277/eliminate-duplicate-logging-in-log4net/651296#6512966Answer by Eddie for Eliminate Duplicate Logging in log4netEddie2009-03-16T17:08:43Z2009-03-16T17:08:43Z<p>Try with this change, setting additivity to false</p>
<pre><code><root>
<level value="WARN" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</root>
<logger name="myprogram" additivity="false">
<level value="INFO" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</logger>
</code></pre>
http://stackoverflow.com/questions/651277/eliminate-duplicate-logging-in-log4net/661903#6619036Answer by Jam for Eliminate Duplicate Logging in log4netJam2009-03-19T11:47:05Z2009-03-19T11:47:05Z<p>Hi,</p>
<p>you are getting duplicated because you are telling it to log messages twice. I wouldn't recommend using additivity here since you might experience some side-effects, simply remove unnecessary configuration:</p>
<pre><code><root>
<level value="WARN" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</root>
<logger name="myprogram">
<level value="INFO" />
</logger>
</code></pre>
<p>You don't need to indicate the appender-ref in the logger myprogram since it will inherit them from the root logger; if you specify them again it will log twice.</p>
http://stackoverflow.com/questions/651277/eliminate-duplicate-logging-in-log4net/1201421#12014210Answer by Paul Hatcher for Eliminate Duplicate Logging in log4netPaul Hatcher2009-07-29T16:21:01Z2009-07-29T16:21:01Z<p>There is one other technique which is to split out your more specific logging to another appender...</p>
<pre><code><root>
<level value="WARN" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</root>
<logger name="myprogram" additivity="false">
<level value="INFO" />
<appender-ref ref="MyProgLog" />
</logger>
</code></pre>
<p>This will then put just myprogram logging into MyProgLog which can be better depending on volume of traffic/circumstances.</p>