Browse Source

Reduce log level for zenoh subcrates

Keep the warning messages for now.
tags/v0.0.0-test.4
Philipp Oppermann 3 years ago
parent
commit
1475af4711
Failed to extract signature
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      binaries/runtime/src/main.rs

+ 2
- 0
binaries/runtime/src/main.rs View File

@@ -284,6 +284,8 @@ fn set_up_logger() -> Result<(), fern::InitError> {
})
.level(log::LevelFilter::Debug)
.level_for("zenoh", log::LevelFilter::Warn)
.level_for("zenoh_transport", log::LevelFilter::Warn)
.level_for("zenoh_link_tcp", log::LevelFilter::Warn)
.chain(std::io::stdout())
.chain(fern::log_file("runtime.log")?)
.apply()?;


Loading…
Cancel
Save