Skip to content

Commit

Permalink
fix(logger): log to stderr
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Mühlbacher <[email protected]>
  • Loading branch information
tmuehlbacher committed Jun 18, 2024
1 parent f72ded6 commit 41df701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ impl log::Log for SimpleLogger {
Level::Debug => "DEBUG".bright_blue(),
Level::Trace => "TRACE".into(),
};
println!(
eprintln!(
"{} - {}: {}",
debug_prefix,
record.module_path().unwrap_or_default().bright_black(),
Expand Down

0 comments on commit 41df701

Please sign in to comment.