Merge branch 'default_log_severity' into 'main'

arti: Raise the default console log severity to "info"

See merge request tpo/core/arti!692
This commit is contained in:
Nick Mathewson 2022-08-25 17:13:51 +00:00
commit 4696174d68
3 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@
# trace_filter = "info,tor_proto::channel=trace"
#
# For more information, see https://docs.rs/tracing-subscriber/0.2.20/tracing_subscriber/filter/struct.EnvFilter.html
#console = "debug"
#console = "info"
# As above, but specify filtering directives for sending trace messages to
# the journald logging system. Empty string means not to use journald.

View File

@ -62,7 +62,7 @@ impl_standard_builder! { LoggingConfig }
/// Return a default tracing filter value for `logging.console`.
#[allow(clippy::unnecessary_wraps)]
fn default_console_filter() -> Option<String> {
Some("debug".to_owned())
Some("info".to_owned())
}
/// Local type alias, mostly helpful for derive_builder to DTRT

View File

@ -46,7 +46,7 @@
# trace_filter = "info,tor_proto::channel=trace"
#
# For more information, see https://docs.rs/tracing-subscriber/0.2.20/tracing_subscriber/filter/struct.EnvFilter.html
#console = "debug"
#console = "info"
# As above, but specify filtering directives for sending trace messages to
# the journald logging system. Empty string means not to use journald.