mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-12 15:33:57 +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]
|
[tracing.logging]
|
||||||
format = "normal"
|
format = "normal"
|
||||||
targets = "warn,tracing_actix_web=info,actix_server=info,actix_web=info"
|
targets = "info"
|
||||||
|
|
||||||
[tracing.console]
|
[tracing.console]
|
||||||
buffer_capacity = 102400
|
buffer_capacity = 102400
|
||||||
|
|
|
@ -194,9 +194,7 @@ impl Default for LoggingDefaults {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
LoggingDefaults {
|
LoggingDefaults {
|
||||||
format: LogFormat::Normal,
|
format: LogFormat::Normal,
|
||||||
targets: "warn,tracing_actix_web=info,actix_web=info,actix_server=info"
|
targets: "info".parse().expect("Valid targets string"),
|
||||||
.parse()
|
|
||||||
.expect("Valid targets string"),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue