mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4170: System Integrity checker - print out exception if the check fails
This commit is contained in:
parent
6ebfa923ff
commit
613c2203c6
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue