diff options
| author | HampusM <hampus@hampusmat.com> | 2026-07-08 22:35:28 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-07-08 22:35:28 +0200 |
| commit | 05063e79465a33eb156c25edf8193fd77ba24314 (patch) | |
| tree | d54a5859888ec0f914dfda5f4bc116dbbd03fac8 /src | |
| parent | 378841f5918b28052d938308c52f4591d1ebbf86 (diff) | |
fix: change default winit log level to warn
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 3a44d40..33d2486 100644 --- a/src/main.rs +++ b/src/main.rs @@ -173,6 +173,7 @@ fn configure_logging() -> Result<(), EngineError> tracing_subscriber::fmt::layer() .with_timer(ChronoLocal::new("%T%.6f".to_string())), ) + .with(EnvFilter::try_new("trace,winit=warn")?) .with( EnvFilter::builder() .with_default_directive(LevelFilter::DEBUG.into()) |
