From 543dc562c12443b253883bc7c07e79acb7bf0e5a Mon Sep 17 00:00:00 2001 From: anxdpanic Date: Mon, 11 May 2020 12:58:46 -0400 Subject: [PATCH] fix logging in Kodi 19 --- addon.xml | 4 ++-- changelog.txt | 3 +++ resources/lib/twitch/log.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/addon.xml b/addon.xml index 8ae49a0..4c4b6b8 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + @@ -9,7 +9,7 @@ all -[fix] stream language +[fix] logging in Kodi 19 icon.png diff --git a/changelog.txt b/changelog.txt index 956ecb8..3c81a5f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +2.0.14 +[fix] logging in Kodi 19 + 2.0.13 [fix] stream language diff --git a/resources/lib/twitch/log.py b/resources/lib/twitch/log.py index f6c2ca2..cc50925 100644 --- a/resources/lib/twitch/log.py +++ b/resources/lib/twitch/log.py @@ -62,7 +62,7 @@ def __init__(self): def info(self, message): message = prep_log_message(message) if xbmc: - self._log(message, xbmc.LOGNOTICE) + self._log(message, xbmc.LOGINFO) else: self._log.info(message)