<div dir="ltr">I don't know if its the source of your duplication, but you don't need to be specifying the STDOUT appender in the logger name="<span style="font-family:arial,sans-serif;font-size:13px">dk.eazyit.eazyregnskab</span>".  My configs typically have root level="INFO" but to get a specific logger to put its DEBUG messages there i just specify the logger I want to, what is it, elevate it level<div>
<br></div><div><div><logger name="htc.cs.service.device.webapp.TracerIDFilter" level="debug" /><br></div><div><br></div><div><root level="info"></div><div>  <appender-ref ref="STDOUT" /></div>
<div>  <appender-ref ref="DAILY_ROLLING" /></div><div>  <appender-ref ref="SYSLOG" /></div><div></root></div></div><div><br></div><div>This makes all loggers log at INFO to my 3 x appenders, but the TracerIDFilter thing logs to those appenders at DEBUG</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jul 11, 2013 at 11:39 AM, sadiq81 <span dir="ltr"><<a href="mailto:Tommy.lynge@gmail.com" target="_blank">Tommy.lynge@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hey<br>
<br>
I have been trying like crazy to figure out what is going. All my console<br>
logs are coming out twice.<br>
<br>
Perhaps someone can tell me what idiot mistake i have made.<br>
<br>
<?xml version="1.0" encoding="UTF-8"?><br>
<configuration debug="true"><br>
<br>
<br>
    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"><br>
        <encoder><br>
            <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} -<br>
%msg%n</Pattern><br>
        </encoder><br>
    </appender><br>
<br>
    <logger name="dk.eazyit.eazyregnskab" level="DEBUG"><br>
        <appender-ref ref="STDOUT"></appender-ref><br>
    </logger><br>
<br>
    <root level="WARN"><br>
        <appender-ref ref="STDOUT"/><br>
    </root><br>
<br>
</configuration><br>
<br>
<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://logback.10977.n7.nabble.com/Double-logging-in-console-tp12662.html" target="_blank">http://logback.10977.n7.nabble.com/Double-logging-in-console-tp12662.html</a><br>
Sent from the Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Logback-user mailing list<br>
<a href="mailto:Logback-user@qos.ch">Logback-user@qos.ch</a><br>
<a href="http://mailman.qos.ch/mailman/listinfo/logback-user" target="_blank">http://mailman.qos.ch/mailman/listinfo/logback-user</a><br>
</blockquote></div><br></div>