From 9612e27531806bea21020925b6c6163b5328a7aa Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 8 Jun 2020 18:21:04 +0200 Subject: [PATCH] correct webuidata log to debug level --- MultiClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiClient.py b/MultiClient.py index 04e1452e02..74c6c6505e 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -1212,7 +1212,7 @@ async def websocket_server(websocket: websockets.WebSocketServerProtocol, path, async for incoming_data in websocket: try: data = json.loads(incoming_data) - logging.info(f"WebUIData:{data}") + logging.debug(f"WebUIData:{data}") if ('type' not in data) or ('content' not in data): raise Exception('Invalid data received in websocket')