From: <mar...@us...> - 2017-01-31 17:39:50
|
Revision: 20032 http://sourceforge.net/p/gate/code/20032 Author: markagreenwood Date: 2017-01-31 17:39:47 +0000 (Tue, 31 Jan 2017) Log Message: ----------- make the log message a little more useful to aid in tracking down lib duplication Modified Paths: -------------- gate/branches/sawdust2/gate-core/src/main/java/gate/util/GateClassLoader.java Modified: gate/branches/sawdust2/gate-core/src/main/java/gate/util/GateClassLoader.java =================================================================== --- gate/branches/sawdust2/gate-core/src/main/java/gate/util/GateClassLoader.java 2017-01-31 14:27:42 UTC (rev 20031) +++ gate/branches/sawdust2/gate-core/src/main/java/gate/util/GateClassLoader.java 2017-01-31 17:39:47 UTC (rev 20032) @@ -188,7 +188,7 @@ URL url = findResource(name.replace('.', '/') + ".class"); if(url != null) log.warn(name - + " is available via both the system classpath and a plugin; the plugin classes will be ignored"); + + " is available via both the system classpath and a plugin; the plugin ("+getID()+") classes will be ignored"); // if we got to here then the class has been found via the // system This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |