From 53f591db5d0021ac6913d0737346240d682ab0cd Mon Sep 17 00:00:00 2001 From: Benjamin Braatz Date: Wed, 14 Jul 2021 14:53:48 +0200 Subject: [PATCH] Log output for graph connection establishment. --- controlpi_plugins/graph.py | 1 + 1 file changed, 1 insertion(+) diff --git a/controlpi_plugins/graph.py b/controlpi_plugins/graph.py index c4fbb0a..37c10ca 100644 --- a/controlpi_plugins/graph.py +++ b/controlpi_plugins/graph.py @@ -38,6 +38,7 @@ class Graph(BasePlugin): self._states[message['original sender']] = message['state'] async def _open_connection(self): + print f"Establishing Graph connection to {self._host}:{self._port}." (self._reader, self._writer) = await asyncio.open_connection( self._host, self._port, ssl=self._ssl_ctx) self._writer.transport.set_write_buffer_limits(0) -- 2.34.1