From 15b162b4504f75063472a2d4da7465b7f4138431 Mon Sep 17 00:00:00 2001 From: atvanguard <93arpit@gmail.com> Date: Fri, 6 Mar 2020 15:28:13 +0530 Subject: [PATCH] Remove unwanted log --- log/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log/logger.go b/log/logger.go index ca3e0b0599..874dc2f56e 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) } return ctx