forked from DGNum/colmena
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:
parent
cb4afb689a
commit
6401ce4c3c
1 changed files with 1 additions and 0 deletions
|
@ -224,6 +224,7 @@ fn init_logging() {
|
|||
env_logger::builder()
|
||||
.format_timestamp(None)
|
||||
.format_module_path(false)
|
||||
.format_target(false)
|
||||
.write_style(style)
|
||||
.init();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue