Merge pull request #13031 from bergquist/golang_1.11

upgrade to golang 1.11
This commit is contained in:
Leonard Gram
2018-09-05 15:31:43 +02:00
committed by GitHub
19 changed files with 48 additions and 41 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ func Critical(skip int, format string, v ...interface{}) {
}
func Fatal(skip int, format string, v ...interface{}) {
Root.Crit(fmt.Sprintf(format, v))
Root.Crit(fmt.Sprintf(format, v...))
Close()
os.Exit(1)
}