X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Fcore.py;h=2ffb04c6e44c20ae7aedc564b212838b34a8361a;hb=4354c875088ac413824ad881505676de417e19bf;hp=8519e5da8abee6f821564b820979e85e4c15b63a;hpb=1c01e4a7aa37eeef825c6918fc90b154a7f4ccc7;p=mpd-sima.git diff --git a/sima/core.py b/sima/core.py index 8519e5d..2ffb04c 100644 --- a/sima/core.py +++ b/sima/core.py @@ -73,10 +73,10 @@ class Sima(Daemon): def foreach_plugin(self, method, *args, **kwds): """Plugin's callbacks dispatcher""" + self.log.trace('dispatching %s to plugins', method) for plugin in self.core_plugins: getattr(plugin, method)(*args, **kwds) for plugin in self.plugins: - #self.log.debug('dispatching {0} to {1}'.format(method, plugin)) getattr(plugin, method)(*args, **kwds) @property