Partially revert 7f1a671

Removed the logger initialization, which was not caught by review
somehow.

This patch re-adds the appropriate lines.
This commit is contained in:
Matthias Beyer 2016-04-05 17:46:51 +02:00
parent ee61d079bd
commit 9a094fcd94

View file

@ -45,7 +45,11 @@ impl<'a> Runtime<'a> {
use configuration::error::ConfigErrorKind;
let matches = cli_spec.get_matches();
let is_debugging = matches.is_present("debugging");
let is_verbose = matches.is_present("verbosity");
Runtime::init_logger(is_debugging, is_verbose);
let rtp : PathBuf = matches.value_of("runtimepath")
.map(PathBuf::from)