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
@@ -216,7 +216,7 @@ func appendIfPossible(message string, extra string, sizeLimit int) string {
if len(extra)+len(message) <= sizeLimit {
return message + extra
}
log.Debug("Line too long for image caption.", "value", extra)
log.Debug("Line too long for image caption. value: %s", extra)
return message
}