X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Fcore.py;h=695a18ca3ca621293164cefef6c1fe088a5af7d7;hb=67d87e47012b5d3ceba56bdff06a0fa406f4840b;hp=62d123ae9e1afa626a144568b57319501e87e048;hpb=751e07b3e43a4812c29f1c89f03e58023278b634;p=mpd-sima.git diff --git a/sima/core.py b/sima/core.py index 62d123a..695a18c 100644 --- a/sima/core.py +++ b/sima/core.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2009, 2010, 2011, 2013, 2014, 2015 Jack Kaliko +# Copyright (c) 2009-2015, 2020 kaliko # # This file is part of sima # @@ -46,7 +46,7 @@ class Sima(Daemon): self.log = getLogger('sima') self._plugins = list() self._core_plugins = list() - self.player = PlayerClient(self) # Player client + self.player = PlayerClient(conf) # MPD client self.short_history = deque(maxlen=60) def add_history(self): @@ -101,7 +101,7 @@ class Sima(Daemon): def queue(self): to_add = list() for plugin in self.plugins: - self.log.info('callback_need_track: %s', plugin) + self.log.debug('callback_need_track: %s', plugin) pl_candidates = getattr(plugin, 'callback_need_track')() if pl_candidates: to_add.extend(pl_candidates) @@ -118,7 +118,7 @@ class Sima(Daemon): while True: tmp = sleepfor.pop(0) sleepfor.append(tmp) - self.log.info('Trying to reconnect in {:>4d} seconds'.format(tmp)) + self.log.info('Trying to reconnect in %4d seconds', tmp) time.sleep(tmp) try: self.player.connect()