* Run a thread that monitors the console input to detect ENTER hits.
*/
protected void startConsoleScanner() {
if ("manual".equalsIgnoreCase(reload)) {
logger.info("Console reloading is ENABLED. Hit ENTER on the console to restart the context.");
consoleScanner = new ConsoleScanner(this);
consoleScanner.start();
}
}