Remove some logging
This commit is contained in:
parent
27c4c6ac38
commit
48d288ac53
2 changed files with 0 additions and 2 deletions
|
@ -42,7 +42,6 @@ class Main():
|
||||||
if mode == 'playstrm':
|
if mode == 'playstrm':
|
||||||
while not utils.window('plex.playlist.play'):
|
while not utils.window('plex.playlist.play'):
|
||||||
xbmc.sleep(25)
|
xbmc.sleep(25)
|
||||||
LOG.error('waiting')
|
|
||||||
if utils.window('plex.playlist.aborted'):
|
if utils.window('plex.playlist.aborted'):
|
||||||
LOG.info("playback aborted")
|
LOG.info("playback aborted")
|
||||||
break
|
break
|
||||||
|
|
|
@ -472,7 +472,6 @@ class PlayQueue(object):
|
||||||
Only manipulates the Kodi playlist. Won't change self.items
|
Only manipulates the Kodi playlist. Won't change self.items
|
||||||
"""
|
"""
|
||||||
LOG.debug('Removing position %s on the Kodi side for %s', pos, self)
|
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)
|
answ = js.playlist_remove(self.playlistid, pos)
|
||||||
if 'error' in answ:
|
if 'error' in answ:
|
||||||
raise PlayqueueError('Could not remove item: %s' % answ['error'])
|
raise PlayqueueError('Could not remove item: %s' % answ['error'])
|
||||||
|
|
Loading…
Reference in a new issue