Skip to content

Commit 09012af

Browse files
committed
improve Prefix function
1 parent 66620fc commit 09012af

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

prefix.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
package slogcolor
22

33
import (
4+
"strings"
5+
46
"github.com/fatih/color"
57
)
68

79
// Prefix prepends a colored prefix to msg.
8-
func Prefix(prefix string, msg string) string {
9-
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, " ")
1016
}

0 commit comments

Comments
 (0)