Yep. Do you know if there are any negative effects on the rest of CF?
> var System = createObject("Java",
> "java.lang.System");
> System.setProperty("log4j.ignoreTCL", true);
My thought was "no", but.. I am still learning the ropes of
classloaders. From what I have read, the jvm setting only changes
which classloader is used by log4j, either:
Thread.currentThread().getContextClassLoader() -OR-
Loader.class.getClassLoader()
My assumption is the two will always be the same when called by CF
internally (ie Both will return
coldfusion.bootstrap.BootstrapClassLoader). In which case, the setting
would make no difference to CF. Does that sound about right?
-Leigh