This commit is contained in:
Michael Quigley 2023-01-09 17:51:05 -05:00
parent 38318c68e2
commit b1de849714
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -23,5 +23,5 @@ func Error(msg string, err error) {
}
func Warning(msg string, v ...interface{}) {
_, _ = fmt.Fprintf(os.Stderr, "%v: "+msg, v...)
_, _ = fmt.Fprintf(os.Stderr, "%v: "+msg, append([]interface{}{WarningLabel}, v...))
}