do not log class not found exceptions, because the parent method finds the class in most cases

This commit is contained in:
Sebastian Sdorra
2014-03-08 21:59:01 +01:00
parent 37c7f136a1
commit 64b44c5759

View File

@@ -87,7 +87,8 @@ public class ScmObjectInputStream extends ObjectInputStream
}
catch (ClassNotFoundException ex)
{
logger.warn("could not find class ".concat(desc.getName()), ex);
// do not log the exception, because the class
// is mostly found by the parent method.
}
if (clazz == null)