Skip to content

Commit

Permalink
fix: info instead of debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Stumblinbear committed Feb 8, 2024
1 parent 9b62f8c commit 9ada36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/responsive_widgets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use agui::{app::run_app, prelude::*};
fn main() {
let filter = EnvFilter::from_default_env()
.add_directive(LevelFilter::ERROR.into())
.add_directive(format!("agui={}", LevelFilter::DEBUG).parse().unwrap());
.add_directive(format!("agui={}", LevelFilter::INFO).parse().unwrap());

tracing_subscriber::fmt()
.with_timer(tracing_subscriber::fmt::time::time())
Expand Down

0 comments on commit 9ada36c

Please sign in to comment.