HDFS-13727. Log full stack trace if DiskBalancer exits with an unhandled exception.
Contributed by Gabor Bota.
This commit is contained in:
parent
8d3c068e59
commit
64e739e344
@ -172,7 +172,9 @@ public static void main(String[] argv) throws Exception {
|
||||
try {
|
||||
res = ToolRunner.run(shell, argv);
|
||||
} catch (Exception ex) {
|
||||
LOG.error(ex.toString());
|
||||
String msg = String.format("Exception thrown while running %s.",
|
||||
DiskBalancerCLI.class.getSimpleName());
|
||||
LOG.error(msg, ex);
|
||||
res = 1;
|
||||
}
|
||||
System.exit(res);
|
||||
|
Loading…
Reference in New Issue
Block a user