From 13854c46a7db958411a61cf9188ce70ff7f4c3d1 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Thu, 14 Dec 2017 00:06:23 -0500 Subject: [PATCH] Raise RBAC DENY log level --- plugin/pkg/auth/authorizer/rbac/rbac.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/pkg/auth/authorizer/rbac/rbac.go b/plugin/pkg/auth/authorizer/rbac/rbac.go index 92094807630..1f507eb0ed2 100644 --- a/plugin/pkg/auth/authorizer/rbac/rbac.go +++ b/plugin/pkg/auth/authorizer/rbac/rbac.go @@ -79,7 +79,7 @@ func (r *RBACAuthorizer) Authorize(requestAttributes authorizer.Attributes) (aut // Build a detailed log of the denial. // Make the whole block conditional so we don't do a lot of string-building we won't use. - if glog.V(2) { + if glog.V(5) { var operation string if requestAttributes.IsResourceRequest() { b := &bytes.Buffer{}