diff --git a/default.py b/default.py index ae7f7e8d..ad06a578 100644 --- a/default.py +++ b/default.py @@ -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 diff --git a/resources/lib/playqueue/playqueue.py b/resources/lib/playqueue/playqueue.py index 525743a7..2e26dc98 100644 --- a/resources/lib/playqueue/playqueue.py +++ b/resources/lib/playqueue/playqueue.py @@ -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'])