From 6582523c5516678ffac44911e48042206f8112ac Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Thu, 21 May 2015 20:41:11 -0500 Subject: [PATCH] Added logging for websocket No handlers could be found for logger "root" - this allows to see the actual error. --- resources/lib/WebSocketClient.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/lib/WebSocketClient.py b/resources/lib/WebSocketClient.py index 2ac66801..0fe6ce0f 100644 --- a/resources/lib/WebSocketClient.py +++ b/resources/lib/WebSocketClient.py @@ -23,6 +23,9 @@ from WriteKodiVideoDB import WriteKodiVideoDB from ReadEmbyDB import ReadEmbyDB from ReadKodiDB import ReadKodiDB +import logging +logging.basicConfig() + _MODE_BASICPLAY=12 class WebSocketThread(threading.Thread):