From a5341822d517ff177810a1e282f5f601418baf17 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Tue, 20 Nov 2018 15:09:03 -0300 Subject: [PATCH] Increase log level when there is an invalid size value --- internal/ingress/controller/template/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ingress/controller/template/template.go b/internal/ingress/controller/template/template.go index c0e34e2b75..1d463616a6 100644 --- a/internal/ingress/controller/template/template.go +++ b/internal/ingress/controller/template/template.go @@ -761,7 +761,7 @@ func isValidByteSize(input interface{}) bool { } if s == "" { - glog.Errorf("empty byte size, hence it will not be set.") + glog.V(2).Info("empty byte size, hence it will not be set") return false }