Remove unwanted log

This commit is contained in:
atvanguard 2020-03-06 15:28:13 +05:30
parent 14ffde834c
commit 15b162b450

View file

@ -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