From: Guillaume Abrioux Date: Thu, 15 Jun 2023 14:19:27 +0000 (+0200) Subject: node-proxy: remove a redundant message X-Git-Tag: v19.3.0~102^2~90 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=415dc693ffaab4e6bbcfd5e2891625c4707bd7e3;p=ceph.git 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 --- diff --git a/src/cephadm/node-proxy/redfish_system.py b/src/cephadm/node-proxy/redfish_system.py index 0dc269deb508..7254236938a1 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()