From 4575f1e482aa5393e2beb5583406c0ec64ee45d0 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Sat, 7 May 2016 17:42:19 +0200 Subject: [PATCH] Increase logging for background updates - You will need to enable debug logging in the PKC settings --- resources/lib/websocket_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lib/websocket_client.py b/resources/lib/websocket_client.py index a26176e8..ca9116b6 100644 --- a/resources/lib/websocket_client.py +++ b/resources/lib/websocket_client.py @@ -44,6 +44,7 @@ class WebSocket(threading.Thread): if typus is None: self.logMsg('No message type, dropping message: %s' % message, -1) return False + self.logMsg('Received message from PMS server: %s' % message, 2) # Drop everything we're not interested in if typus not in ('playing', 'timeline'): return True