Description
In my cluster root logger is not console, so when I run namenode recovery tool MetaRecoveryContext.java prompt message is logged in log file.
Actually is should be display on console.
Currently it is like this
LOG.info(prompt);
It should be
System.err.print(prompt);
NameNode recovery prompt should be printed on console