HDFS-11840. Log HDFS Mover exception message of exit to its own log. Contributed by LiXin Ge.

(cherry picked from commit c31cb879a3)
This commit is contained in:
Andrew Wang 2017-06-06 14:57:48 -07:00
parent 226688a12c
commit 5c819585f2
1 changed files with 1 additions and 0 deletions

View File

@ -171,6 +171,7 @@ public class Mover {
return ExitStatus.ILLEGAL_ARGUMENTS;
} catch (IOException e) {
System.out.println(e + ". Exiting ...");
LOG.error(e + ". Exiting ...");
return ExitStatus.IO_EXCEPTION;
} finally {
dispatcher.shutdownNow();