-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(level): add off, debug, and trace options for default Level
add example for changing the default, and mention in the docs
- Loading branch information
1 parent
42895a2
commit 4a0a458
Showing
2 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
use clap::Parser; | ||
use clap_verbosity_flag::{InfoLevel, Verbosity}; | ||
|
||
/// Foo | ||
#[derive(Debug, Parser)] | ||
struct DefaultCli { | ||
#[command(flatten)] | ||
verbose: Verbosity, | ||
} | ||
|
||
/// Bar | ||
#[derive(Debug, Parser)] | ||
struct InfoCli { | ||
#[command(flatten)] | ||
verbose: Verbosity<InfoLevel>, | ||
} | ||
|
||
fn main() { | ||
let error_cli = DefaultCli::parse(); | ||
|
||
dbg!(&error_cli.verbose); | ||
|
||
assert_eq!( | ||
error_cli.verbose.log_level_filter(), | ||
log::LevelFilter::Error | ||
); | ||
|
||
let info_cli = InfoCli::parse(); | ||
|
||
dbg!(&info_cli.verbose); | ||
|
||
assert_eq!(info_cli.verbose.log_level_filter(), log::LevelFilter::Info); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters