From 90c3e0bd99aadbed70e9e7c28a774e73c98c3b42 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 15 Jun 2023 16:19:27 +0200 Subject: [PATCH] node-proxy: remove a redundant message This message is not needed given that there's the same in the RedFishClient class. Signed-off-by: Guillaume Abrioux (cherry picked from commit 415dc693ffaab4e6bbcfd5e2891625c4707bd7e3) --- src/cephadm/node-proxy/redfish_system.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cephadm/node-proxy/redfish_system.py b/src/cephadm/node-proxy/redfish_system.py index 0dc269deb50..7254236938a 100644 --- a/src/cephadm/node-proxy/redfish_system.py +++ b/src/cephadm/node-proxy/redfish_system.py @@ -35,7 +35,6 @@ class RedfishSystem(System): return result def start_client(self) -> None: - log.logger.info(f"redfish system initialization, host: {self.host}, user: {self.username}") self.client = RedFishClient(self.host, self.username, self.password) self.client.login() -- 2.39.5