Add debug output in main
This commit is contained in:
parent
beccb7ab3d
commit
beee7b20b4
1 changed files with 5 additions and 1 deletions
|
@ -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!");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue