mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix missing logging
This commit is contained in:
parent
2274565c0d
commit
3a859279ec
1 changed files with 2 additions and 2 deletions
|
@ -28,9 +28,9 @@ class LogHandler(logging.StreamHandler):
|
|||
|
||||
if self._getLogLevel(record.levelno):
|
||||
try:
|
||||
xbmc.log(self.format(record))
|
||||
xbmc.log(self.format(record), level=xbmc.LOGNOTICE)
|
||||
except UnicodeEncodeError:
|
||||
xbmc.log(self.format(record).encode('utf-8'))
|
||||
xbmc.log(self.format(record).encode('utf-8'), level=xbmc.LOGNOTICE)
|
||||
|
||||
def _getLogLevel(self, level):
|
||||
|
||||
|
|
Loading…
Reference in a new issue