From ebc935c1a9bfc4fb4cfa6a497f3abeb8e5c72c1a Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Tue, 18 May 2021 20:46:33 +0200 Subject: [PATCH] improve message --- owrx/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrx/connection.py b/owrx/connection.py index 94ce721..d36379a 100644 --- a/owrx/connection.py +++ b/owrx/connection.py @@ -517,7 +517,7 @@ class HandshakeMessageHandler(Handler): logger.warning("invalid connection type: %s", handshake["type"]) if client is not None: - logger.debug("handing off connection handling to %s", type(client).__name__) + logger.debug("handshake complete, handing off to %s", type(client).__name__) # hand off all further communication to the correspondig connection conn.send("CLIENT DE SERVER server=openwebrx version={version}".format(version=openwebrx_version)) conn.setMessageHandler(client)