-
Bug
-
Resolution: Fixed
-
Trivial
-
System property hudson.remoting.RemoteClassLoader.force is set to the name of a class to be loaded, e.g. -Dhudson.remoting.RemoteClassLoader.force=com.sun.jna.Native
JENKINS-19445 added a workaround for a Windows JNA deadlock bug in pr#82. That added a log message.
Unfortunately that log message was malformed (using %s instead of {0} etc), resulting in an ugly and unhelpful log message saying:
INFO: %s class '%s' using classloader: %s
It should say something like:
INFO: Loaded class 'com.foo.Bar' using classloader: com.foo.SomeClassLoader
instead.