Skip to content

Commit 5d0d61b

Browse files
committed
update log level
1 parent 5ce7a66 commit 5d0d61b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

durabletask/worker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,9 @@ def create_fresh_connection():
318318
current_stub = stubs.TaskHubSidecarServiceStub(current_channel)
319319
current_stub.Hello(empty_pb2.Empty())
320320
conn_retry_count = 0
321-
self._logger.debug(f"Created fresh connection to {self._host_address}")
321+
self._logger.info(f"Created fresh connection to {self._host_address}")
322322
except Exception as e:
323-
self._logger.debug(f"Failed to create connection: {e}")
323+
self._logger.warning(f"Failed to create connection: {e}")
324324
current_channel = None
325325
current_stub = None
326326
raise

0 commit comments

Comments
 (0)