mirror of
https://github.com/grafana/grafana.git
synced 2025-01-07 14:43:42 -06:00
Backend plugins: Log wrapper args formatting fix (#20521)
Formatting fix missed in #20514
This commit is contained in:
parent
cc21e3efbe
commit
6a4ad136dc
@ -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" {
|
||||
|
Loading…
Reference in New Issue
Block a user