diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-09-26 11:58:08 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-09-26 11:58:08 +0100 |
commit | 1888524f0e8db15921d84d7bea6315af36825ae3 (patch) | |
tree | 3a3e7193f03ea1edaa3f4f5e97176c3354e5fcdb /pykolab | |
parent | d71bf4c22beaf3ad5204bab0edcee454881c7084 (diff) | |
download | pykolab-1888524f0e8db15921d84d7bea6315af36825ae3.tar.gz |
Reduce log level required for non-tracing output
Diffstat (limited to 'pykolab')
-rw-r--r-- | pykolab/plugins/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/plugins/__init__.py b/pykolab/plugins/__init__.py index c3e0676..2ec01a4 100644 --- a/pykolab/plugins/__init__.py +++ b/pykolab/plugins/__init__.py @@ -224,7 +224,7 @@ class KolabPlugins(object): if hasattr(getattr(self,plugin),hook): try: - log.debug(_("Executing hook %s for plugin %s") %(hook,plugin), level=9) + log.debug(_("Executing hook %s for plugin %s") %(hook,plugin), level=8) exec("retval = self.%s.%s(*args, **kw)" %(plugin,hook)) except TypeError, e: log.error(_("Cannot execute hook %s for plugin %s: %s") %(hook,plugin,e)) |