Skip to content

Commit d6aeaaa

Browse files
authored
cli: reduce warning to info when skipping audits (#488)
1 parent b47bbfb commit d6aeaaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ fn run() -> Result<ExitCode> {
356356
use crate::audit::AuditCore as _;
357357
match base::new(audit_state.clone()) {
358358
Ok(audit) => audit_registry.register_audit(base::ident(), Box::new(audit)),
359-
Err(e) => tracing::warn!("skipping {audit}: {e}", audit = base::ident()),
359+
Err(e) => tracing::info!("skipping {audit}: {e}", audit = base::ident()),
360360
}
361361
}};
362362
}

0 commit comments

Comments
 (0)