From dea17edf4e84cc6bb8ae133efbe25673bff0611c Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 16 May 2013 21:06:41 +0200 Subject: [PATCH] enable nbxmpp logging when using -v --- src/common/logging_helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/logging_helpers.py b/src/common/logging_helpers.py index 2acb7d691..85ec8b169 100644 --- a/src/common/logging_helpers.py +++ b/src/common/logging_helpers.py @@ -163,9 +163,11 @@ def set_loglevels(loglevels_string): def set_verbose(): parseAndSetLogLevels('gajim=1') + parseAndSetLogLevels('.nbxmpp=1') def set_quiet(): parseAndSetLogLevels('gajim=CRITICAL') + parseAndSetLogLevels('.nbxmpp=CRITICAL') # tests