We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66620fc commit 09012afCopy full SHA for 09012af
prefix.go
@@ -1,10 +1,16 @@
1
package slogcolor
2
3
import (
4
+ "strings"
5
+
6
"github.com/fatih/color"
7
)
8
9
// Prefix prepends a colored prefix to msg.
-func Prefix(prefix string, msg string) string {
- return color.New(color.BgHiWhite, color.FgBlack).Sprint(prefix) + " " + msg
10
+func Prefix(prefix string, msg ...string) string {
11
+ if len(msg) == 0 {
12
+ return color.New(color.BgHiWhite, color.FgBlack).Sprint(prefix)
13
+ }
14
15
+ return color.New(color.BgHiWhite, color.FgBlack).Sprint(prefix) + " " + strings.Join(msg, " ")
16
}
0 commit comments