-
Bug
-
Resolution: Done
-
Minor
-
2.10
-
None
-
Low
-
Workaround Exists
-
The JDKLogImpl class initializes the category using Class.toString, but should instead be using getName(). The toString() produces values such as "class org.jgroups.conf.ConfiguratorFactory" when we just want the class name.
The fix is to replace this:
public JDKLogImpl(Class category)
With this:
public JDKLogImpl(Class category)