mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-8656: messages about classloader issues in ipc framwork
This commit is contained in:
parent
b060c66096
commit
ea886910d8
|
|
@ -125,6 +125,7 @@ public class OnwireClassRegistry {
|
|||
} catch (IOException e) {
|
||||
s_logger.debug("Encountered IOException", e);
|
||||
} catch (ClassNotFoundException e) {
|
||||
s_logger.info("[ignored] class not found", e);
|
||||
}
|
||||
return classes;
|
||||
}
|
||||
|
|
@ -139,6 +140,7 @@ public class OnwireClassRegistry {
|
|||
Class<?> clazz = Class.forName(name);
|
||||
classes.add(clazz);
|
||||
} catch (ClassNotFoundException e) {
|
||||
s_logger.info("[ignored] class not found in directory " + directory, e);
|
||||
} catch (Exception e) {
|
||||
s_logger.debug("Encountered unexpect exception! ", e);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue