1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 10:43:47 +00:00

set log level filter to INFO

This commit is contained in:
neuronull
2025-10-15 08:28:22 -06:00
parent 733ba46bfc
commit 6704dcb2e0

View File

@@ -71,8 +71,8 @@ impl MacOSProviderClient {
#[uniffi::constructor]
pub fn connect() -> Self {
let filter = EnvFilter::builder()
// Everything logs at `TRACE`
.with_default_directive(LevelFilter::TRACE.into())
// Everything logs at `INFO`
.with_default_directive(LevelFilter::INFO.into())
.from_env_lossy();
tracing_subscriber::registry()