Skip to content

Commit 5a2bdd8

Browse files
authored
Merge pull request #172 from opentensor/fix/thewhaleking/mised-debug-logger
Removed debug log
2 parents 39473a1 + fadc61d commit 5a2bdd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

async_substrate_interface/async_substrate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ async def _start_receiving(self, ws: ClientConnection) -> Exception:
720720
fut.set_exception(e)
721721
fut.cancel()
722722
else:
723-
logger.warning("Timeout occurred. Reconnecting.")
723+
logger.debug("Timeout occurred. Reconnecting.")
724724
return e
725725

726726
async def _start_sending(self, ws) -> Exception:
@@ -750,7 +750,7 @@ async def _start_sending(self, ws) -> Exception:
750750
self._received[i].set_exception(e)
751751
self._received[i].cancel()
752752
else:
753-
logger.warning("Timeout occurred. Reconnecting.")
753+
logger.debug("Timeout occurred. Reconnecting.")
754754
return e
755755

756756
async def send(self, payload: dict) -> str:

0 commit comments

Comments
 (0)