CLOUDSTACK-4170: System Integrity checker - print out exception if the check fails

This commit is contained in:
Alena Prokharchyk 2013-08-07 17:07:31 -07:00
parent 6ebfa923ff
commit 613c2203c6
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class ComponentContext implements ApplicationContextAware {
try {
entry.getValue().check();
} catch(Throwable e) {
s_logger.error("System integrity check failed. Refuse to startup");
s_logger.error("System integrity check failed. Refuse to startup", e);
System.exit(1);
}
}