Backend plugins: Log wrapper args formatting fix (#20521)

Formatting fix missed in #20514
This commit is contained in:
Marcus Efraimsson 2019-11-20 16:57:55 +01:00 committed by GitHub
parent cc21e3efbe
commit 6a4ad136dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ func formatArgs(args ...interface{}) []interface{} {
res := []interface{}{}
for n := 0; n < len(args); n = n + 2 {
for n := 0; n < len(args); n += 2 {
key := args[n]
if stringKey, ok := key.(string); ok && stringKey == "timestamp" {