Skip to content

Commit ea1e27d

Browse files
committed
Fixed error on clippy
1 parent a14a5c5 commit ea1e27d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub fn log_output(msg: &str, logger: &Logger, quiet: bool, with_timestamp: bool)
4848
let full_msg = if with_timestamp {
4949
format!("\n\n[{}] {}", now(), msg)
5050
} else {
51-
format!("{}", msg.to_string())
51+
msg.to_string()
5252
};
5353

5454
if !quiet {

0 commit comments

Comments
 (0)