diff options
| author | HampusM <hampus@hampusmat.com> | 2026-09-03 20:53:15 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-09-03 20:53:15 +0200 |
| commit | 7a1932911a7d05e40bbfc1d1ef83a92945730118 (patch) | |
| tree | 0b9eeb61bd998663b1edbf4ef708b22ed28995bd | |
| parent | 57a9ffc9d598838e136f187d7ab158e9b5c6e311 (diff) | |
chore: change default log level filter to info
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index d890ce9..514bf21 100644 --- a/src/main.rs +++ b/src/main.rs @@ -245,7 +245,7 @@ fn configure_logging() -> Result<(), EngineError> .with(EnvFilter::try_new("trace,winit=warn")?) .with( EnvFilter::builder() - .with_default_directive(LevelFilter::DEBUG.into()) + .with_default_directive(LevelFilter::INFO.into()) .from_env()?, ) .init(); |
