From ea6ddd137300bb08a36850606b828b959bf3db2a Mon Sep 17 00:00:00 2001 From: Pere Diaz Bou Date: Tue, 2 Aug 2022 18:56:49 +0200 Subject: [PATCH] mgr/dashboard: remove token logging Signed-off-by: Pere Diaz Bou (cherry picked from commit fdaf909fba0c399b8d9bbc3a29a5af871546d9d9) --- src/pybind/mgr/dashboard/services/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/services/auth.py b/src/pybind/mgr/dashboard/services/auth.py index 76ee740b1a73a..8ae897cebd8d4 100644 --- a/src/pybind/mgr/dashboard/services/auth.py +++ b/src/pybind/mgr/dashboard/services/auth.py @@ -178,7 +178,6 @@ class AuthManagerTool(cherrypy.Tool): def _check_authentication(self): JwtManager.reset_user() token = JwtManager.get_token_from_header() - self.logger.debug("token: %s", token) if token: user = JwtManager.get_user(token) if user: -- 2.39.5