Skip to content

Commit 7f89432

Browse files
authored
Merge pull request #35 from lcheylus/improve-outputs
Improve outputs
2 parents 0754bb7 + 1d8657f commit 7f89432

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

utils/print.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ func PrintBannerWithoutColor() {
4949
\/ /_/ \___|_|_| |_| |_|\__,_|\__,_|_|_|
5050
`,
5151
)
52+
fmt.Println()
5253

5354
if commons.Verbose {
5455
fmt.Printf("Version %s (commit %s), built at %s, compiled with %s\n",

utils/trace.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ func Trace(msg string, isDebug bool) {
2525
func TraceWarn(msg string) {
2626
if commons.NoColor {
2727
msg = CleanForLog(msg)
28-
fmt.Println("⚠ " + msg)
28+
fmt.Println("⚠ " + msg)
2929
} else {
30-
fmt.Println(ColorString("[light_yellow]⚠ " + msg + "[default]"))
30+
fmt.Println(ColorString("[light_yellow]⚠ " + msg + "[default]"))
3131
}
3232
log.Info(CleanForLog(msg))
3333
}

0 commit comments

Comments
 (0)