We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c678c57 commit 2e70fbdCopy full SHA for 2e70fbd
1 file changed
src/cli/shared.rs
@@ -21,11 +21,10 @@ pub(crate) fn show_banner() {
21
let url = style("codspeed.io").color256(CODSPEED_U8_COLOR_CODE);
22
let separator = style("─".repeat(52)).dim();
23
24
- eprintln!();
25
- eprintln!("{}", style(logo).color256(CODSPEED_U8_COLOR_CODE).bold());
26
- eprintln!(" {separator}");
27
- eprintln!(" {url} {version_tag}");
28
+ eprintln!(
+ "\n{}\n {separator}\n {url} {version_tag}\n",
+ style(logo).color256(CODSPEED_U8_COLOR_CODE).bold()
+ );
29
debug!("codspeed v{VERSION}");
30
}
31
0 commit comments