Commit 6a4ad136 by Marcus Efraimsson Committed by GitHub

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

Formatting fix missed in #20514
parent cc21e3ef
......@@ -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" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment