diff --git a/src/format.rs b/src/format.rs index a6b50c3..8cb5efb 100644 --- a/src/format.rs +++ b/src/format.rs @@ -45,10 +45,10 @@ pub(super) async fn format_status( Ok(format!( "{}{}", ancestor, - if !thread.is_empty() { - format!("\n{}", thread) - } else { + if thread.is_empty() { String::default() + } else { + format!("\n{}", thread) } )) } diff --git a/src/main.rs b/src/main.rs index be22d03..dc7e35d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,8 +35,8 @@ struct Config { output_dir: Option, #[arg(required = true)] date: String, - #[arg(short, long)] - verbose: bool, + #[arg(short, long, action = clap::ArgAction::Count)] + verbose: u8, } #[tokio::main] @@ -49,7 +49,11 @@ async fn main() -> Result<()> { output_dir, } = Config::parse(); - let level = if verbose { "debug" } else { "off" }; + let level = match verbose { + 0 => "off", + 1 => "debug", + _ => "trace", + }; env::set_var("RUST_LOG", format!("{}={}", module_path!(), level)); env_logger::init();