From 420d804cce5133252cb934aa0326671afa2713d5 Mon Sep 17 00:00:00 2001 From: Elvin Efendi Date: Thu, 21 Feb 2019 16:19:10 -0500 Subject: [PATCH] increase log verbosity for auth annotations --- internal/ingress/annotations/authreq/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/ingress/annotations/authreq/main.go b/internal/ingress/annotations/authreq/main.go index c5cdbc334b..1cf2de2222 100644 --- a/internal/ingress/annotations/authreq/main.go +++ b/internal/ingress/annotations/authreq/main.go @@ -146,12 +146,12 @@ func (a authReq) Parse(ing *extensions.Ingress) (interface{}, error) { // Optional Parameters signIn, err := parser.GetStringAnnotation("auth-signin", ing) if err != nil { - klog.Warning("auth-signin annotation is undefined and will not be set") + klog.V(3).Infof("auth-signin annotation is undefined and will not be set") } authSnippet, err := parser.GetStringAnnotation("auth-snippet", ing) if err != nil { - klog.Warning("auth-snippet annotation is undefined and will not be set") + klog.V(3).Infof("auth-snippet annotation is undefined and will not be set") } responseHeaders := []string{}