diff --git a/log/logger.go b/log/logger.go index 276d6969e24d..a7ba630d1b8d 100644 --- a/log/logger.go +++ b/log/logger.go @@ -207,7 +207,7 @@ func normalize(ctx []interface{}) []interface{} { // that things are the right length and users can fix bugs // when they see the output looks wrong if len(ctx)%2 != 0 { - ctx = append(ctx, nil, errorKey, "Normalized odd number of arguments by adding nil") + ctx = append(ctx, nil, "LOG15_WARN", "Normalized odd number of arguments by adding nil") } return ctx