Skip to content

Commit

Permalink
suppress spurious warnings - see tauri-apps/tauri#8494
Browse files Browse the repository at this point in the history
  • Loading branch information
gulbanana committed Mar 20, 2024
1 parent a397beb commit 83a4a2e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,14 @@ fn main() -> Result<()> {
LevelFilter::Warn
},
)
.level_for(
"tao",
if args.debug {
LevelFilter::Info
} else {
LevelFilter::Error
},
)
.build(),
)
.invoke_handler(tauri::generate_handler![
Expand Down

0 comments on commit 83a4a2e

Please sign in to comment.