remove useless log output

Signed-off-by: hongming <talonwan@yunify.com>
This commit is contained in:
hongming
2021-03-25 15:37:22 +08:00
parent 8ca0c86b39
commit b83b3232cb
4 changed files with 8 additions and 8 deletions

View File

@@ -47,7 +47,7 @@ func NewTokenAuthenticator(tokenOperator auth.TokenManagementInterface, userList
func (t *tokenAuthenticator) AuthenticateToken(ctx context.Context, token string) (*authenticator.Response, bool, error) {
providedUser, err := t.tokenOperator.Verify(token)
if err != nil {
klog.Error(err)
klog.Warning(err)
return nil, false, err
}