Skip to content

Commit 49b096a

Browse files
committedJul 30, 2021
fix new log entries
1 parent e9f3ac9 commit 49b096a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎cylc/uiserver/data_store_mgr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ async def register_workflow(self, w_id):
150150
self.update_contact(w_id, status=WorkflowStatus.INSTALLED.value)
151151

152152
async def unregister_workflow(self, w_id):
153-
logger.debug(f'unregister_workflow({w_id})')
153+
self.log.debug(f'unregister_workflow({w_id})')
154154
self.update_contact(w_id, pruned=True)
155155
if w_id in self.delta_queues:
156156
while any(

‎cylc/uiserver/workflows_mgr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async def workflow_request(
9595
# except socket.error as exc:
9696
# if flags.verbosity > 1:
9797
# raise
98-
# logger.error("ERROR: %s: %s\n", exc, host)
98+
# self.log.error("ERROR: %s: %s\n", exc, host)
9999
# return (reg, host, port, pub_port, None)
100100
#
101101
# # NOTE: Connect to the workflow by host:port. This way the

0 commit comments

Comments
 (0)