summaryrefslogtreecommitdiff
path: root/python/vyos/debug.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/vyos/debug.py')
-rw-r--r--python/vyos/debug.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/vyos/debug.py b/python/vyos/debug.py
index 60e5291c1..6ce42b173 100644
--- a/python/vyos/debug.py
+++ b/python/vyos/debug.py
@@ -86,10 +86,17 @@ def _timed(message):
return f'{now} {message}'
+def _remove_invisible(string):
+ for char in ('\0', '\a', '\b', '\f', '\v'):
+ string = string.replace(char, '')
+ return string
+
+
def _format(flag, message):
"""
format a log message
"""
+ message = _remove_invisible(message)
return f'DEBUG/{flag.upper():<7} {message}\n'