Update helm.go

Signed-off-by: Giulio Calzolari <9049490+giuliocalzolari@users.noreply.github.com>
pull/13280/head
Giulio Calzolari 1 year ago committed by GitHub
parent 057528636c
commit 202e2345fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -45,7 +45,8 @@ func init() {
func debug(format string, v ...interface{}) {
if settings.Debug {
format = fmt.Sprintf("[debug] %s\n", format)
timeNow := time.Now().UTC().String()
format = fmt.Sprintf("%s [debug] %s\n", timeNow, format)
log.Output(2, fmt.Sprintf(format, v...))
}
}

Loading…
Cancel
Save