Skip to content

Commit

Permalink
Fix small typo in logging.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteOtter committed Aug 6, 2024
1 parent 269cd52 commit 9be92eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions isototest/src/logging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ pub const LOG_TARGET: &str = "[isototest]";
pub fn initialize_default_logging() {
Builder::new()
.filter_level(log::LevelFilter::Info)
.format(|bug, record| {
.format(|buf, record| {
writeln!(
buf,
"{} [{}] {}: {}",
buf.timestamp,
buf.timestamp(),
record.level(),
record.target(),
record.args()
Expand Down

0 comments on commit 9be92eb

Please sign in to comment.