We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce7a66 commit 5d0d61bCopy full SHA for 5d0d61b
durabletask/worker.py
@@ -318,9 +318,9 @@ def create_fresh_connection():
318
current_stub = stubs.TaskHubSidecarServiceStub(current_channel)
319
current_stub.Hello(empty_pb2.Empty())
320
conn_retry_count = 0
321
- self._logger.debug(f"Created fresh connection to {self._host_address}")
+ self._logger.info(f"Created fresh connection to {self._host_address}")
322
except Exception as e:
323
- self._logger.debug(f"Failed to create connection: {e}")
+ self._logger.warning(f"Failed to create connection: {e}")
324
current_channel = None
325
current_stub = None
326
raise
0 commit comments