cli: Remove target from logs

format_target is enabled by default in env_logger 0.9.0. It makes
the logs look cluttered and is not very useful for our use case.
This commit is contained in:
Zhaofeng Li 2022-01-05 14:01:05 -08:00
parent cb4afb689a
commit 6401ce4c3c

View file

@ -224,6 +224,7 @@ fn init_logging() {
env_logger::builder()
.format_timestamp(None)
.format_module_path(false)
.format_target(false)
.write_style(style)
.init();
}