diff options
Diffstat (limited to 'pykolab/plugins/roundcubedb/__init__.py')
-rw-r--r-- | pykolab/plugins/roundcubedb/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pykolab/plugins/roundcubedb/__init__.py b/pykolab/plugins/roundcubedb/__init__.py index a7f289e..40271c3 100644 --- a/pykolab/plugins/roundcubedb/__init__.py +++ b/pykolab/plugins/roundcubedb/__init__.py @@ -45,7 +45,7 @@ class KolabRoundcubedb(object): domain - domain name """ - log.debug(_("user_delete: %r") % (kw), level=9) + log.debug(_("user_delete: %r") % (kw), level=8) if os.path.isdir('/usr/share/roundcubemail'): rcpath = '/usr/share/roundcubemail/' @@ -64,6 +64,6 @@ class KolabRoundcubedb(object): if proc.returncode != 0: log.error(rcpath + "bin/deluser.sh exited with error %d: %r" % (proc.returncode, procerr)) else: - log.debug(rcpath + "bin/deluser.sh success: %r; %r" % (procout, procerr), level=9) + log.debug(rcpath + "bin/deluser.sh success: %r; %r" % (procout, procerr), level=8) return None |