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:
parent
ee61d079bd
commit
9a094fcd94
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue