<font size=2 face="sans-serif">Hi all,</font>
<br>
<br><font size=2 face="sans-serif">is there a possibility to log depending
on the class or method? For example I have the following scenario:</font>
<br>
<br><font size=2 face="sans-serif">package a.b.c</font>
<br>
<br><font size=2 face="sans-serif">public Class D{</font>
<br>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; Logger
logger = LoggerFactory.getLogger(D.class);</font>
<br>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; public
void method1(){</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; logger.info(&quot;method1&quot;);</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; }</font>
<br>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; public
void method2(){</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; logger.info(&quot;method2&quot;);</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; }</font>
<br><font size=2 face="sans-serif">}</font>
<br>
<br><font size=2 face="sans-serif">I look for something like this in logback
configuration:</font>
<br>
<br><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">logger</font><font size=2 face="Courier New">
</font><font size=2 color=#800080 face="Courier New">name</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New"><i>&quot;a.b.c.D#method1&quot;</i></font><font size=2 face="Courier New">
</font><font size=2 color=#800080 face="Courier New">level</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New"><i>&quot;INFO&quot;</i></font><font size=2 face="Courier New">
</font><font size=2 color=#008080 face="Courier New">/&gt;</font>
<br>
<br><font size=2 color=#008080 face="Courier New">&lt;</font><font size=2 color=#3f8080 face="Courier New">root</font><font size=2 face="Courier New">
</font><font size=2 color=#800080 face="Courier New">level</font><font size=2 face="Courier New">=</font><font size=2 color=#4200ff face="Courier New"><i>&quot;WARN&quot;</i></font><font size=2 color=#008080 face="Courier New">&gt;</font>
<br><font size=2 color=#008080 face="Courier New">&lt;/root&gt;</font>
<br>
<br>
<br><font size=2 color=#008080 face="Courier New">After calling method1
and method2 I would expect only the log entry of method 2.</font>
<br>
<br><font size=2 color=#008080 face="Courier New">Is this possible?</font>
<br>
<br><font size=2 color=#008080 face="Courier New">Thanks &amp; regards,</font>
<br><font size=2 color=#008080 face="Courier New">Marc</font>
<br>