Skip to content

Commit

Permalink
Improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed Jul 22, 2013
1 parent 79599db commit 8caff00
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public ExportedInstance<T> call() throws Exception
}
catch (ClassNotFoundException cnfe)
{
log.fine("Class " + requestedType.getName() + " is not present in this addon ClassLoader");
log.fine("Class " + requestedType.getName() + " is not present in this addon [" + addon + "]");
return null;
}

Expand All @@ -112,7 +112,7 @@ public ExportedInstance<T> call() throws Exception
}
catch (ClassNotFoundException cnfe)
{
log.fine("Class " + actualType.getName() + " is not present in this addon ClassLoader");
log.fine("Class " + actualType.getName() + " is not present in this addon [" + addon + "]");
return null;
}

Expand Down Expand Up @@ -199,6 +199,7 @@ public <T> Set<ExportedInstance<T>> getExportedInstances(Class<T> requestedType)
}
catch (ClassNotFoundException e)
{
log.fine("Class " + requestedType.getName() + " is not present in this addon [" + addon + "]");
return result;
}

Expand Down

0 comments on commit 8caff00

Please sign in to comment.