diff --git a/bibigrid/core/utility/handler/ssh_handler.py b/bibigrid/core/utility/handler/ssh_handler.py index 222bcfd0..784663e1 100644 --- a/bibigrid/core/utility/handler/ssh_handler.py +++ b/bibigrid/core/utility/handler/ssh_handler.py @@ -120,7 +120,7 @@ def is_active(client, floating_ip_address, private_key, username, timeout=5): LOG.error(f"Attempt to connect to {floating_ip_address} failed.") raise ConnectionException(exc) from exc except socket.timeout as exc: - LOG.warning("Socket timeout exception occurred. Try again ...") + LOG.info("Socket timeout exception occurred. Try again ...") if attempts < timeout: attempts += 1 else: