fix: INFO > ERROR

This commit is contained in:
Erica Marigold 2023-09-30 13:25:17 +05:30
parent f0eed2fd01
commit 1f0e032a00
No known key found for this signature in database
GPG key ID: 7843994FD1386E35

View file

@ -12,7 +12,7 @@ fn main() {
tracing_subscriber::fmt()
.with_max_level(match core::is_debug() {
true => Level::DEBUG,
false => Level::ERROR,
false => Level::INFO,
})
.init();
}