From e43b67640eda57d6304b96c641d3a72383d3ee32 Mon Sep 17 00:00:00 2001 From: Peter Schnebel Date: Thu, 31 Oct 2013 16:37:28 +0100 Subject: [PATCH] clean up --- beetsplug/mpc.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/beetsplug/mpc.py b/beetsplug/mpc.py index 0ae2d7fa5..67a95acbc 100644 --- a/beetsplug/mpc.py +++ b/beetsplug/mpc.py @@ -271,8 +271,6 @@ class Client(object): log.info(u'mpc(play|stream): {0}'.format(song)) else: beets_item = self.beets_get_item(song) - log.info(u'mpc(play): {0}'.format(song)) - # status['time'] = position:duration (in seconds) t = status['time'].split(':') remaining = (int(t[1]) -int(t[0])) @@ -307,7 +305,7 @@ class Client(object): 'path' : song, 'beets_item' : beets_item, } - log.info(u'mpc(now_playing): {0}' + log.info(u'mpc(playing): {0}' .format(now_playing['path'])) self.beets_update(now_playing['beets_item'], 'last_played', value=int(time.time()))