Skip to content

Commit 88e5ce3

Browse files
committed
Rust: lower default verbosity to WARN
1 parent ca27785 commit 88e5ce3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/extractor/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fn main() -> anyhow::Result<()> {
6363
let cfg = config::Config::extract().context("failed to load configuration")?;
6464
stderrlog::new()
6565
.module(module_path!())
66-
.verbosity(2 + cfg.verbose as usize)
66+
.verbosity(1 + cfg.verbose as usize)
6767
.init()?;
6868

6969
let traps = trap::TrapFileProvider::new(&cfg).context("failed to set up trap files")?;

0 commit comments

Comments
 (0)