Skip to content

Commit

Permalink
Merge pull request #259 from JakeRoggenbuck/add-colon-to-warn
Browse files Browse the repository at this point in the history
Add colon to WARN
  • Loading branch information
JakeRoggenbuck authored Mar 23, 2022
2 parents 67c3d95 + 3fbecea commit 6daf4a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use colored::*;
macro_rules! warn_user {
($a:expr) => {{
use colored::Colorize;
println!("{}{}", "WARN".bold().yellow(), $a,);
println!("{}: {}", "WARN".bold().yellow(), $a,);
}};
}

Expand Down

0 comments on commit 6daf4a2

Please sign in to comment.