Added debug for not found classloading

This commit is contained in:
Greg Wilkins 2015-09-04 09:39:52 +10:00
parent e2205d2365
commit 85f138270e
1 changed files with 3 additions and 0 deletions

View File

@ -470,7 +470,10 @@ public class WebAppClassLoader extends URLClassLoader
c= _parent.loadClass(name);
if (c == null && ex!=null)
{
LOG.debug("not found {} from {}",name,this,ex);
throw ex;
}
if (resolve)
resolveClass(c);