Add a new configuration option at the root level:
To set the logging level. Right now, it's hardcoded:
fn config_level_or_default(log_level: &Option<String>) -> LevelFilter {
match log_level {
None => log::LevelFilter::Info,
Some(level) => LevelFilter::from_str(level).unwrap(),
}
}