Skip to content

Commit 5c5edf3

Browse files
author
myxy99
committed
xconsole
1 parent 370c160 commit 5c5edf3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

xconsole/xconsole.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func Yellowf(msg string, arg interface{}) {
2626
if !debug {
2727
return
2828
}
29-
fmt.Print(xcolor.Yellowf(fmt.Sprintf("[xconsole]\t%-20v", msg), arg))
29+
fmt.Print(xcolor.Yellowf(fmt.Sprintf("[xconsole]\t%-30v", msg), arg))
3030
}
3131

3232
// Red ...
@@ -42,7 +42,7 @@ func Redf(msg string, arg interface{}) {
4242
if !debug {
4343
return
4444
}
45-
fmt.Print(xcolor.Redf(fmt.Sprintf("[xconsole]\t%-20v", msg), arg))
45+
fmt.Print(xcolor.Redf(fmt.Sprintf("[xconsole]\t%-30v", msg), arg))
4646
}
4747

4848
// Blue ...
@@ -58,7 +58,7 @@ func Bluef(msg string, arg interface{}) {
5858
if !debug {
5959
return
6060
}
61-
fmt.Print(xcolor.Bluef(fmt.Sprintf("[xconsole]\t%-20v", msg), arg))
61+
fmt.Print(xcolor.Bluef(fmt.Sprintf("[xconsole]\t%-30v", msg), arg))
6262
}
6363

6464
// Green ...
@@ -74,5 +74,5 @@ func Greenf(msg string, arg interface{}) {
7474
if !debug {
7575
return
7676
}
77-
fmt.Print(xcolor.Greenf(fmt.Sprintf("[xconsole]\t%-20v", msg), arg))
77+
fmt.Print(xcolor.Greenf(fmt.Sprintf("[xconsole]\t%-30v", msg), arg))
7878
}

0 commit comments

Comments
 (0)