mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Backend plugins: Log wrapper args formatting fix (#20521)
Formatting fix missed in #20514
This commit is contained in:
committed by
GitHub
parent
cc21e3efbe
commit
6a4ad136dc
@@ -20,7 +20,7 @@ func formatArgs(args ...interface{}) []interface{} {
|
|||||||
|
|
||||||
res := []interface{}{}
|
res := []interface{}{}
|
||||||
|
|
||||||
for n := 0; n < len(args); n = n + 2 {
|
for n := 0; n < len(args); n += 2 {
|
||||||
key := args[n]
|
key := args[n]
|
||||||
|
|
||||||
if stringKey, ok := key.(string); ok && stringKey == "timestamp" {
|
if stringKey, ok := key.(string); ok && stringKey == "timestamp" {
|
||||||
|
|||||||
Reference in New Issue
Block a user