From 2d6885146d9dc5bcbe5861803c9e9e294f7a9ad0 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 55436afb6ad3..fc883f05524c 100644 --- a/src/pybind/mgr/dashboard/services/auth.py +++ b/src/pybind/mgr/dashboard/services/auth.py @@ -179,7 +179,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.47.3