Skip to content

Commit

Permalink
fix debug log style and log both creations
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Aug 2, 2024
1 parent bf14d49 commit 4d90752
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion parsl/executors/high_throughput/interchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ def _command_server(self) -> NoReturn:
logger.debug("Command Server Starting")

if self.hub_address is not None and self.hub_zmq_port is not None:
logger.debug("Creating monitoring radio to %s:%s", self.hub_address, self.hub_zmq_port)
monitoring_radio = ZMQRadioSender(self.hub_address, self.hub_zmq_port)
else:
monitoring_radio = None
Expand Down Expand Up @@ -327,7 +328,7 @@ def start(self) -> None:
logger.info("Starting main interchange method")

if self.hub_address is not None and self.hub_zmq_port is not None:
logger.debug("Creating monitoring radio")
logger.debug("Creating monitoring radio to %s:%s", self.hub_address, self.hub_zmq_port)
monitoring_radio = ZMQRadioSender(self.hub_address, self.hub_zmq_port)
logger.debug("Created monitoring radio")
else:
Expand Down

0 comments on commit 4d90752

Please sign in to comment.