summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorThomas Mangin <thomas.mangin@exa.net.uk>2020-04-08 18:07:29 +0100
committerThomas Mangin <thomas.mangin@exa.net.uk>2020-04-08 18:09:29 +0100
commit38c2b8947e5e901609a834e0c6c14ed7f17043f2 (patch)
tree142c400c9ee44a935211e52276a561973cc5b827 /python
parentf35a14e76c0b510cc9b7d41c9cc4e9fed3bb8457 (diff)
downloadvyos-1x-38c2b8947e5e901609a834e0c6c14ed7f17043f2.tar.gz
vyos-1x-38c2b8947e5e901609a834e0c6c14ed7f17043f2.zip
logging: T2186: cosmetic changes
Diffstat (limited to 'python')
-rw-r--r--python/vyos/airbag.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/python/vyos/airbag.py b/python/vyos/airbag.py
index 47d3dcb43..664974d5f 100644
--- a/python/vyos/airbag.py
+++ b/python/vyos/airbag.py
@@ -25,9 +25,7 @@ from vyos.util import run
from vyos.util import debug
-# during the session, system-versions-foot is called to generate
-# the config footer, the code currently use stdout, so to do not
-# get a copy of that, we allow to disable the extra logging
+# we allow to disable the extra logging
DISABLE = False
@@ -79,7 +77,8 @@ def bug_report(dtype, value, trace):
# reach the end of __main__ and was not intercepted
def intercepter(dtype, value, trace):
bug_report(dtype, value, trace)
- if debug('developer') not in [None, '0', '']:
+ # debug returns either '' or 'developer' if debuging is enabled
+ if debug('developer'):
import pdb
pdb.pm()