Skip to content

Commit f3d2710

Browse files
author
David Erb
committed
changes marker on debug
1 parent a91892f commit f3d2710

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/chimpflow_lib/miners/aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def activate_process(self) -> None:
6969
except Exception as exception:
7070
logger.exception("exception in miner process", exc_info=exception)
7171

72-
logger.debug(f"[PIDAL] {callsign(self)} is returning from activate_process")
72+
logger.debug(f"[DISSHU] {callsign(self)} is returning from activate_process")
7373

7474
# ----------------------------------------------------------------------------------------
7575
def activate_thread(self, loop) -> None:

src/chimpflow_lib/miners/context.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,11 @@ async def aexit(self) -> None:
7575
if self.server is not None:
7676
if self.context_specification.get("start_as") == "process":
7777
logger.info(
78-
"[NEWSHUT] in context exit, sending shutdown to client process"
78+
"[DISSHU] in context exit, sending shutdown to client process"
7979
)
8080
# Put in request to shutdown the server.
8181
await self.server.client_shutdown()
82-
logger.info(
83-
"[NEWSHUT] in context exit, sent shutdown to client process"
84-
)
82+
logger.info("[DISSHU] in context exit, sent shutdown to client process")
8583

8684
if self.context_specification.get("start_as") == "coro":
8785
await self.server.direct_shutdown()

src/chimpflow_lib/miners/direct_poll.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ async def deactivate(self) -> None:
113113
self.__xchembku = None
114114

115115
if self.__xchembku_client_context is not None:
116-
logger.debug(f"[ECHDON] {callsign(self)} exiting __xchembku_client_context")
116+
logger.debug(f"[DISSHU] {callsign(self)} exiting __xchembku_client_context")
117117
await self.__xchembku_client_context.aexit()
118-
logger.debug(f"[ECHDON] {callsign(self)} exited __xchembku_client_context")
118+
logger.debug(f"[DISSHU] {callsign(self)} exited __xchembku_client_context")
119119
self.__xchembku_client_context = None
120120

121121
# ----------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)