Skip to content

Commit

Permalink
CLI: add rustyline to target_exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Oct 25, 2023
1 parent 474b1ba commit a2af374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn logger_init(cli: &WalletCli) -> Result<(), Error> {
let archive = LoggerOutputConfigBuilder::default()
.name("archive.log")
.level_filter(cli.log_level)
.target_exclusions(&["rustls"])
.target_exclusions(&["rustls", "rustyline"])
.color_enabled(false);
let config = LoggerConfigBuilder::default().with_output(archive).finish();

Expand Down

0 comments on commit a2af374

Please sign in to comment.