Skip to content

Commit 1fdf1b3

Browse files
authored
Merge pull request #73 from anxdpanic/dev
2.0.14
2 parents 9e1023d + 543dc56 commit 1fdf1b3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

addon.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="2.0.13" provider-name="A Talented Community">
2+
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="2.0.14" provider-name="A Talented Community">
33
<requires>
44
<import addon="xbmc.python" version="2.20.0"/>
55
<import addon="script.module.six" version="1.11.0"/>
@@ -9,7 +9,7 @@
99
<extension point="xbmc.addon.metadata">
1010
<platform>all</platform>
1111
<news>
12-
[fix] stream language
12+
[fix] logging in Kodi 19
1313
</news>
1414
<assets>
1515
<icon>icon.png</icon>

changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.0.14
2+
[fix] logging in Kodi 19
3+
14
2.0.13
25
[fix] stream language
36

resources/lib/twitch/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(self):
6262
def info(self, message):
6363
message = prep_log_message(message)
6464
if xbmc:
65-
self._log(message, xbmc.LOGNOTICE)
65+
self._log(message, xbmc.LOGINFO)
6666
else:
6767
self._log.info(message)
6868

0 commit comments

Comments
 (0)