chore: fixed typo
Signed-off-by: mellobacon <mellodev@outlook.com>
mellobacon committed
Nov 2, 2023 at 20:39 UTC
781f427d22250a4d29bcc976adc80427e8a3a8bc
1 file changed
+1
-1
src-tauri/src/main.rs
+1
-1
@@ -217,7 +217,7 @@ fn configure_log() -> TauriPlugin<Wry> {
217
if cfg!(debug_assertions) {
218
filter = !matches!(l.level(), Level::Trace);
219
}
220
- else if !cfg!(not(debug_assertions)) {
220
+ else if cfg!(not(debug_assertions)) {
221
filter = !matches!(l.level(), Level::Trace | Level::Debug);
222
}
223
filter