Skip to content

Commit

Permalink
logging: disable thread ids
Browse files Browse the repository at this point in the history
  • Loading branch information
a-kenji committed Jul 22, 2024
1 parent 70f64f9 commit 0928d8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/flake-edit/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn init_logging(log_file: Option<PathBuf>) -> Result<(), std::io::Error> {
// will be written to output path.
.with_max_level(Level::TRACE)
.with_writer(Mutex::new(log_file.unwrap()))
.with_thread_ids(true)
.with_thread_ids(false)
.with_ansi(true)
.with_line_number(true);

Expand Down

0 comments on commit 0928d8b

Please sign in to comment.