Skip to content

Commit

Permalink
Remove newline from TestLogger time output
Browse files Browse the repository at this point in the history
  • Loading branch information
lazorchakp committed Nov 16, 2022
1 parent c927c19 commit 8481058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loggers/testlog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ pub fn write_time(config: &Config) {
TimeFormat::Custom(format) => time.format(&format),
};
match res {
Ok(time) => println!("{} ", time),
Ok(time) => print!("{} ", time),
Err(err) => panic!("Invalid time format: {}", err),
};
}
Expand Down

0 comments on commit 8481058

Please sign in to comment.