Skip to content

Commit

Permalink
Merge pull request #114 from lazorchakp/testlogger-remove-newline
Browse files Browse the repository at this point in the history
Remove newline from TestLogger time output
  • Loading branch information
Drakulix committed Nov 16, 2022
2 parents c927c19 + 8481058 commit 626467d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loggers/testlog.rs
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 626467d

Please sign in to comment.