code review comments

This commit is contained in:
Pat Hickey
2020-06-03 15:35:53 -07:00
parent 6910c1e03d
commit 0fb374947a
4 changed files with 5 additions and 6 deletions

View File

@@ -71,7 +71,7 @@ fn main() {
if std::env::var("RUST_LOG").is_err() {
// with no RUST_LOG env variable: use the tracing subscriber.
let subscriber = tracing_subscriber::fmt()
// all spans/events with a level higher than TRACE (e.g, debug, info, warn, etc.)
// all spans/events with a level equal to or higher than TRACE (e.g, trace, debug, info, warn, etc.)
// will be written to stdout.
.with_max_level(tracing::Level::TRACE)
// builds the subscriber.