Remove some logging

This commit is contained in:
croneter 2019-05-26 17:43:22 +02:00
parent 27c4c6ac38
commit 48d288ac53
2 changed files with 0 additions and 2 deletions

View file

@ -42,7 +42,6 @@ class Main():
if mode == 'playstrm':
while not utils.window('plex.playlist.play'):
xbmc.sleep(25)
LOG.error('waiting')
if utils.window('plex.playlist.aborted'):
LOG.info("playback aborted")
break

View file

@ -472,7 +472,6 @@ class PlayQueue(object):
Only manipulates the Kodi playlist. Won't change self.items
"""
LOG.debug('Removing position %s on the Kodi side for %s', pos, self)
LOG.error('Current Kodi playlist: %s', js.playlist_get_items(self.playlistid))
answ = js.playlist_remove(self.playlistid, pos)
if 'error' in answ:
raise PlayqueueError('Could not remove item: %s' % answ['error'])