X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Fcore.py;h=eea108d3a078eb15ecc88913b8bd98a532b21abc;hb=e48dd20fe58f25ee7491d7a62f691917e1e5a73f;hp=8519e5da8abee6f821564b820979e85e4c15b63a;hpb=1c01e4a7aa37eeef825c6918fc90b154a7f4ccc7;p=mpd-sima.git diff --git a/sima/core.py b/sima/core.py index 8519e5d..eea108d 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) # pylint: disable=no-member 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