Skip to content

Commit 263ce7f

Browse files
src: lib: logger: Disable threads information as (almost) everything uses tokio
1 parent 16731df commit 263ce7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/logger/manager.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ pub fn init() {
3333
.with_line_number(true)
3434
.with_span_events(fmt::format::FmtSpan::NONE)
3535
.with_target(false)
36-
.with_thread_ids(true)
37-
.with_thread_names(true)
36+
.with_thread_ids(false)
37+
.with_thread_names(false)
3838
.with_filter(console_env_filter);
3939

4040
// Configure the file log

0 commit comments

Comments
 (0)