From f9ff53d06eaf62f087fd58cdd075ba129e1bbd32 Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Mon, 27 Nov 2017 14:49:17 +0100 Subject: [PATCH] Do not log trailing whitespace. --- pkg/registry/rbac/rest/storage_rbac.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/registry/rbac/rest/storage_rbac.go b/pkg/registry/rbac/rest/storage_rbac.go index b8704f8e46..67f34604c4 100644 --- a/pkg/registry/rbac/rest/storage_rbac.go +++ b/pkg/registry/rbac/rest/storage_rbac.go @@ -264,7 +264,7 @@ func (p *PolicyData) EnsureRBACPolicy() genericapiserver.PostStartHookFunc { case result.Operation == reconciliation.ReconcileUpdate: glog.Infof("updated role.%s/%s in %v with additional permissions: %v", rbac.GroupName, role.Name, namespace, result.MissingRules) case result.Operation == reconciliation.ReconcileCreate: - glog.Infof("created role.%s/%s in %v ", rbac.GroupName, role.Name, namespace) + glog.Infof("created role.%s/%s in %v", rbac.GroupName, role.Name, namespace) } return nil })