Hi!

I found a bug in the com.ibatis.common.logging.jdk14Jdk14LoggingImpl
class under Java 6.

Look at the constructor:

public Jdk14LoggingImpl(Class clazz) {
  log = Logger.getLogger(clazz.toString());
}

Under Java 6 the toString() Method of Class returns the name of the
class prefixed with "class " or "interface"! So you will never get the
correct JDK logger.

A better an working solution would be to use the getName() method
instead of the toString() method. Can anyone please fix this?

Thanks a lot!

Marc


Reply via email to