Use info level for http requests instead of debug to reduce clutter

This commit is contained in:
Noa Aarts 2024-12-11 11:07:24 +01:00
parent 8969a9e6d5
commit fe2ca594e9
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -93,7 +93,7 @@ async fn main() {
tracing_subscriber::registry()
.with(
tracing_subscriber::EnvFilter::try_from_default_env().unwrap_or_else(|_| {
format!("{}=debug,tower_http=debug", env!("CARGO_CRATE_NAME")).into()
format!("{}=info,tower_http=info", env!("CARGO_CRATE_NAME")).into()
}),
)
.with(tracing_subscriber::fmt::layer())