We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relates to: #878 (comment)
After migrating from the log to the tracing crate, we can now easily support multiple formats for logging.
log
tracing
@da2ce7 has proposed these 4 styles:
#[derive(Debug)] pub enum TraceStyle { Default, Pretty(bool), Compact, Json, }
That is already included in the code, but it's hardcoded to the TraceStyle::Deafult value. It's not possible to change it from the configuration.
TraceStyle::Deafult
@da2ce7 also proposes these changes in the TOML config file:
Current:
log_level = "info"
New:
trace_filter = "info" trace_style = "full"
trace_filter replaces log_level option in the current version.
trace_filter
log_level
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Relates to: #878 (comment)
After migrating from the
log
to thetracing
crate, we can now easily support multiple formats for logging.@da2ce7 has proposed these 4 styles:
That is already included in the code, but it's hardcoded to the
TraceStyle::Deafult
value. It's not possible to change it from the configuration.@da2ce7 also proposes these changes in the TOML config file:
Current:
New:
trace_filter
replaceslog_level
option in the current version.The text was updated successfully, but these errors were encountered: