Skip to content

Commit

Permalink
fix: Adjust default help
Browse files Browse the repository at this point in the history
This is part of #77
  • Loading branch information
epage committed Dec 15, 2023
1 parent d415548 commit 45c4a59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ pub trait LogLevel {
fn default() -> Option<log::Level>;

fn verbose_help() -> Option<&'static str> {
Some("More output per occurrence")
Some("Increase logging verbosity")
}

fn verbose_long_help() -> Option<&'static str> {
None
}

fn quiet_help() -> Option<&'static str> {
Some("Less output per occurrence")
Some("Decrease logging verbosity")
}

fn quiet_long_help() -> Option<&'static str> {
Expand Down

0 comments on commit 45c4a59

Please sign in to comment.