allow filtering by log level
All checks were successful
CI / build (push) Successful in 51s
CI / checks (push) Successful in 1m2s
CI / build-nixpkgs (push) Successful in 37s

This commit is contained in:
Robin Appelman 2026-02-27 00:28:08 +01:00
commit 6d3b67e823
9 changed files with 164 additions and 25 deletions

View file

@ -10,7 +10,7 @@ pub enum LogLevel {
Info = 1,
Warn = 2,
Error = 3,
Exception,
Exception = 4,
#[default]
Unknown,
}