mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-09 14:04:58 +00:00
Default log level to info
This commit is contained in:
parent
90065a7db5
commit
65ea518542
2 changed files with 2 additions and 4 deletions
|
@ -9,7 +9,7 @@ timeout = 30
|
|||
|
||||
[tracing.logging]
|
||||
format = "normal"
|
||||
targets = "warn,tracing_actix_web=info,actix_server=info,actix_web=info"
|
||||
targets = "info"
|
||||
|
||||
[tracing.console]
|
||||
buffer_capacity = 102400
|
||||
|
|
|
@ -194,9 +194,7 @@ impl Default for LoggingDefaults {
|
|||
fn default() -> Self {
|
||||
LoggingDefaults {
|
||||
format: LogFormat::Normal,
|
||||
targets: "warn,tracing_actix_web=info,actix_web=info,actix_server=info"
|
||||
.parse()
|
||||
.expect("Valid targets string"),
|
||||
targets: "info".parse().expect("Valid targets string"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue