Thanks for the hint Lance! I feel like this could be the issue. However, I haven&#39;t managed to actually find a solution to it. I tried starting my application with -verbose:class, but I can only see one entry of:<br>[Loaded ch.qos.logback.classic.LoggerContext from file:/yyy/logback-classic-0.9.21.jar]. I suppose there should be multiple of these, if that actually is the problem? Thanks for your help!<br>
<br><br><div class="gmail_quote">On Fri, Mar 25, 2011 at 4:54 PM, Lance White <span dir="ltr">&lt;<a href="mailto:lance.white@logicscope.com">lance.white@logicscope.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div link="blue" vlink="purple" lang="EN-GB"><div><div class="im"><p class="MsoNormal">&gt;&gt; However, when I try to use this code outside of my test environement, I get the following Exception on the first line:<br>&gt;&gt; java.lang.ClassCastException: ch.qos.logback.classic.LoggerContext cannot be cast to ch.qos.logback.classic.LoggerContext<br>
<br><span style="font-size:11.0pt;color:#1F497D"></span></p></div><p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D">This is usually a multiple classloader problem.</span></p><p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p><p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D">Lance</span></p><p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p><p class="MsoNormal"><b><span style="font-size:10.0pt" lang="EN-US">From:</span></b><span style="font-size:10.0pt" lang="EN-US"> <a href="mailto:logback-user-bounces@qos.ch" target="_blank">logback-user-bounces@qos.ch</a> [mailto:<a href="mailto:logback-user-bounces@qos.ch" target="_blank">logback-user-bounces@qos.ch</a>] <b>On Behalf Of </b>Clemens Siebler<br>
<b>Sent:</b> 24 March 2011 16:16<br><b>To:</b> logback users list<br><b>Subject:</b> Re: [logback-user] Retrieving the log filenames</span></p><div><div></div><div class="h5"><p class="MsoNormal"> </p><p class="MsoNormal" style="margin-bottom:12.0pt">
Ok, I figured out how to get at least the base logfile:<br>        LoggerContext ctx = (LoggerContext) LoggerFactory.getILoggerFactory();        <br>        for (Logger l : ctx.getLoggerList()) {<br>            ch.qos.logback.classic.Logger log = (ch.qos.logback.classic.Logger) l;            <br>
            Iterator&lt;Appender&lt;ILoggingEvent&gt;&gt; it = log.iteratorForAppenders();<br>            while (it.hasNext()) {<br>                Appender&lt;ILoggingEvent&gt; ap = it.next();<br>                if (ap instanceof FileAppender&lt;?&gt; || ap instanceof RollingFileAppender&lt;?&gt;) {<br>
                    FileAppender&lt;?&gt; fileAppender = (FileAppender&lt;?&gt;)ap;<br>                    System.out.println(fileAppender.getFile());<br>                }<br>            }<br>        }<br><br>However, when I try to use this code outside of my test environement, I get the following Exception on the first line:<br>
java.lang.ClassCastException: ch.qos.logback.classic.LoggerContext cannot be cast to ch.qos.logback.classic.LoggerContext<br><br>Any ideas? I&#39;m currently using Jetty, slf4j and logback. However, it seems that there are still some dependencies on log4j in Jetty that I can&#39;t get rid of...<br>
<br></p><div><p class="MsoNormal">On Tue, Mar 22, 2011 at 10:23 AM, Clemens Siebler &lt;<a href="mailto:clemens.siebler@googlemail.com" target="_blank">clemens.siebler@googlemail.com</a>&gt; wrote:<br><br></p><p class="MsoNormal">
As far as log4j goes, the getAppender function can be used. However, I have not managed to get this one working for logback. Any ideas?</p><div><div><p class="MsoNormal" style="margin-bottom:12.0pt"> </p><div><p class="MsoNormal">
On Mon, Mar 21, 2011 at 3:42 PM, Clemens Siebler &lt;<a href="mailto:clemens.siebler@googlemail.com" target="_blank">clemens.siebler@googlemail.com</a>&gt; wrote:<br><br></p><p class="MsoNormal">Let&#39;s assume the user only changes the logging levels/filter during runtime, nothing else.</p>
<div><div><p class="MsoNormal" style="margin-bottom:12.0pt"> </p><div><p class="MsoNormal">On Mon, Mar 21, 2011 at 3:32 PM, David Roussel &lt;<a href="mailto:nabble@diroussel.xsmail.com" target="_blank">nabble@diroussel.xsmail.com</a>&gt; wrote:<br>
<br></p><p class="MsoNormal">Would a change notifier be told of the new filename?  I&#39;m not sure, but it&#39;s worth a check.</p><div><div><p class="MsoNormal"><br>On 21 Mar 2011, at 13:56, Clemens Siebler &lt;<a href="mailto:clemens.siebler@googlemail.com" target="_blank">clemens.siebler@googlemail.com</a>&gt; wrote:<br>
<br>&gt; Hi all,<br>&gt;<br>&gt; I&#39;m currently using Logback (SLF4J) with a TimeBasedRollingPolicy defined in logback.xml. Everything works fine, however, I&#39;d like to retrieve the filenames of the current logging session since the application started. The user can obviously change the log filenames and policies in logback.xml, so I don&#39;t want them hardcoded in the source. My goal is to retrieve these filenames straight within Java in order to do some more processing with them. Is there any possibility in logback/slf4j to retrieve those names?<br>
&gt;<br>&gt; I currently aquire the logger via:<br>&gt; Logger logger = LoggerFactory.getLogger(Test.class);<br>&gt;<br>&gt; but obviously, this Logger object in particular doesn&#39;t provide such functionality. Any ideas?<br>
&gt;<br>&gt; Thanks in advance,<br>&gt; Clemens</p></div></div><p class="MsoNormal">&gt; _______________________________________________<br>&gt; Logback-user mailing list<br>&gt; <a href="mailto:Logback-user@qos.ch" target="_blank">Logback-user@qos.ch</a><br>
&gt; <a href="http://qos.ch/mailman/listinfo/logback-user" target="_blank">http://qos.ch/mailman/listinfo/logback-user</a><br>_______________________________________________<br>Logback-user mailing list<br><a href="mailto:Logback-user@qos.ch" target="_blank">Logback-user@qos.ch</a><br>
<a href="http://qos.ch/mailman/listinfo/logback-user" target="_blank">http://qos.ch/mailman/listinfo/logback-user</a></p></div><p class="MsoNormal"> </p></div></div></div><p class="MsoNormal"> </p></div></div></div><p class="MsoNormal">
 </p></div></div></div><br><br>
<p align="left"><font style="background-color:#ffffff">.</font></p>
</div><br>_______________________________________________<br>
Logback-user mailing list<br>
<a href="mailto:Logback-user@qos.ch">Logback-user@qos.ch</a><br>
<a href="http://qos.ch/mailman/listinfo/logback-user" target="_blank">http://qos.ch/mailman/listinfo/logback-user</a><br>
<br></blockquote></div><br>