Mark Thomas wrote:
As well as JDBC drivers, logging frameworks are frequent culprits for causing this.
What about commons-logging and log4j?
I use following pattern in my code: import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; private static final Log log = LogFactory.getLog(MyClass.class); Is it good or is there anything better? -- Mikolaj Rydzewski <[email protected]> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
