mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
increase logging verbosity for WebSocket message errors
This commit is contained in:
parent
fd9c3d42d8
commit
38c063ddc5
1 changed files with 1 additions and 1 deletions
|
@ -894,7 +894,7 @@ class WebSocketApp(object):
|
|||
callback(self, *args)
|
||||
except Exception, e:
|
||||
logger.error(e)
|
||||
if logger.isEnabledFor(logging.DEBUG):
|
||||
if True:#logger.isEnabledFor(logging.DEBUG):
|
||||
_, _, tb = sys.exc_info()
|
||||
traceback.print_tb(tb)
|
||||
|
||||
|
|
Loading…
Reference in a new issue