From ca237a3e26d0595ee7c45fbea66dc5f086cad0fc Mon Sep 17 00:00:00 2001 From: Roman Date: Sun, 10 Nov 2024 16:22:59 -0800 Subject: [PATCH 1/2] Reconnection substrate as debug --- bittensor/utils/networking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bittensor/utils/networking.py b/bittensor/utils/networking.py index 4c0c47585..037f185d5 100644 --- a/bittensor/utils/networking.py +++ b/bittensor/utils/networking.py @@ -191,7 +191,7 @@ def wrapper(self, *args, **kwargs): ) != 0 ): - logging.info("Reconnection substrate...") + logging.debug("Reconnection substrate...") self._get_substrate() # Execute the method if the connection is active or after reconnecting return func(self, *args, **kwargs) From 1ed909e4d0d74115548a8eed6aa7a912399363cc Mon Sep 17 00:00:00 2001 From: Roman <167799377+roman-opentensor@users.noreply.github.com> Date: Sun, 10 Nov 2024 21:39:26 -0800 Subject: [PATCH 2/2] Update networking.py Co-authored-by: Benjamin Himes <37844818+thewhaleking@users.noreply.github.com> --- bittensor/utils/networking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bittensor/utils/networking.py b/bittensor/utils/networking.py index 037f185d5..76686d5fa 100644 --- a/bittensor/utils/networking.py +++ b/bittensor/utils/networking.py @@ -191,7 +191,7 @@ def wrapper(self, *args, **kwargs): ) != 0 ): - logging.debug("Reconnection substrate...") + logging.debug("Reconnecting to substrate...") self._get_substrate() # Execute the method if the connection is active or after reconnecting return func(self, *args, **kwargs)