Use info level for http requests instead of debug to reduce clutter (#64)
Makes the log only 1 line instead of like 7 for each frame that gets sent
This commit is contained in:
commit
5c3690d72a
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue