Browse Source

reduce loglevel to debug

bergquist 6 years ago
parent
commit
7754c37a1f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/services/auth/token_cleanup.go

+ 1 - 1
pkg/services/auth/token_cleanup.go

@@ -52,6 +52,6 @@ func (srv *UserAuthTokenService) deleteExpiredTokens(maxInactiveLifetime, maxLif
 		return 0, nil
 		return 0, nil
 	}
 	}
 
 
-	srv.log.Info("cleanup of expired auth tokens done", "count", affected)
+	srv.log.Debug("cleanup of expired auth tokens done", "count", affected)
 	return affected, err
 	return affected, err
 }
 }