Log4j and commons logging
Hi,
My application is using log4j, I get my logger as follows:
privatestatic Logger sLogger = Logger.getLogger(Neolyser.class);
My problem is that Im using a library thats using commons logging and writes all its logging onto my logger, which I dont want. I want only to see my log statements, I'm happy enough with exceptions and stack traces from the library. So how can I turn off the commons logging? Or at least get it to write to another logger? Thanks in advance,
Ste

