We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa077fe commit 597edc8Copy full SHA for 597edc8
src/logging.rs
@@ -18,6 +18,9 @@ pub fn initialize_logger(verbose: bool, quiet: bool) {
18
let config = ConfigBuilder::new()
19
// Display a time stamp only for the most verbose level.
20
.set_time_level(LevelFilter::Trace)
21
+ // Display the thread number only for the most verbose level.
22
+ // The information is hardly useful because newdoc is single-threaded.
23
+ .set_thread_level(LevelFilter::Trace)
24
.build();
25
26
TermLogger::init(
0 commit comments