Add debug output in main

This commit is contained in:
Matthias Beyer 2015-11-27 19:24:58 +01:00
parent beccb7ab3d
commit beee7b20b4

View file

@ -27,8 +27,12 @@ fn main() {
let logger = ImagLogger::init(&configuration, &config);
debug!("Logger created!");
debug!("CliConfig : {:?}", &config);
debug!("Configuration: {:?}", &configuration);
let rt = Runtime::new(configuration, config);
debug!("Runtime created!");
debug!("Runtime : {:?}", &rt);
info!("Hello, world!");
}