Hi all,<br>I&#39;m working on a Java Application (not a web application) which uses log4j.<br>But there is a dependency on org.jdesktop package, and this package uses java.util.logging.<br>As we want all our logging to go to files and to follow the log4j configuration, we decided to use the jul-to-slf4j bridge and the log4j implementation of slf4j.<br>

This way, the logs from our code is still &quot;simply&quot; logged with log4j and the logs from the org.jdesktop package are routed to slf4j, which actually &quot;send&quot; them to log4j as well.<br>This is working fine, all the logs are making it to the log files. The only problem is that the JUL logs are still going to the console (so they go to both the console and the log files), and we would like to avoid it.<br>

<br>Any idea on how to do that?<br>Thanks,<br>Phil<br>