Skip to content

Commit

Permalink
Common.check()- changed to log warning instead of error when health c…
Browse files Browse the repository at this point in the history
…heck fails
  • Loading branch information
ansjmoody committed Jan 28, 2025
1 parent 3f3fe2a commit c37405e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/sherlock/core/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def check(self) -> bool:
Whether the Sherlock client is connected via gRPC.
"""
if not self._is_connection_up():
LOG.error("Health check failed.")
LOG.warning("Health check failed.")
return False
else:
LOG.info("Connection is healthy.")
Expand Down

0 comments on commit c37405e

Please sign in to comment.