Skip to content

Commit

Permalink
Allow verbosity = info in config file
Browse files Browse the repository at this point in the history
  • Loading branch information
WGUNDERWOOD committed Dec 21, 2024
1 parent fcc4545 commit 910db8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub fn get_config_args(args: &OptionArgs) -> Option<OptionArgs> {
let verbosity = match config.get("verbosity").map(|x| x.as_str().unwrap()) {
Some("error" | "quiet") => Some(LevelFilter::Error),
Some("warn") => Some(LevelFilter::Warn),
Some("verbose") => Some(LevelFilter::Info),
Some("info" | "verbose") => Some(LevelFilter::Info),
Some("trace") => Some(LevelFilter::Trace),
_ => None,
};
Expand Down

0 comments on commit 910db8f

Please sign in to comment.