Skip to content

Commit

Permalink
Logging Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
klpanagi committed Dec 19, 2024
1 parent a0fc7d2 commit 4f5fee3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions commlib/pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@ def run(self) -> None:
self._main_thread.start()
self._state = EndpointState.CONNECTED
else:
self.logger().debug(
f"Transport already connected - cannot run {self.__class__.__name__}")
self.logger().debug("Transport already connected - Skipping")

def stop(self) -> None:
"""
Expand Down
2 changes: 1 addition & 1 deletion commlib/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def run(self) -> None:
self._state = EndpointState.CONNECTED
else:
self.log.error(
f"Transport already connected - cannot run {self.__class__.__name__}")
"Transport already connected - Skipping")

def stop(self):
"""
Expand Down

0 comments on commit 4f5fee3

Please sign in to comment.