We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7d225b commit 498f497Copy full SHA for 498f497
pyhilo/graphql.py
@@ -548,6 +548,9 @@ async def subscribe_to_device_updated(
548
self, location_hilo_id: str, callback: callable = None
549
) -> None:
550
LOG.debug("subscribe_to_device_updated called")
551
+
552
+ #Setting log level to suppress keepalive messages on gql transport
553
+ logging.getLogger('gql.transport.websockets').setLevel(logging.WARNING)
554
while True: # Loop to reconnect if the connection is lost
555
LOG.debug("subscribe_to_device_updated while true")
556
access_token = await self._get_access_token()
0 commit comments