Skip to content

Commit

Permalink
Merge pull request #83 from a-kenji/improve-logging
Browse files Browse the repository at this point in the history
logging: disable thread ids
  • Loading branch information
a-kenji authored Jul 22, 2024
2 parents 70f64f9 + 0928d8b commit 94a1412
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 94a1412

Please sign in to comment.