Apparently set +x is set +o xtrace now ;P

This commit is contained in:
Alexandre Aubin 2020-04-30 05:21:42 +02:00
parent e9f359e5f0
commit bb82c41db6
2 changed files with 2 additions and 0 deletions

View file

@ -916,6 +916,7 @@ def dump_app_log_extract_for_debugging(operation_logger):
filters = [ filters = [
r"set [+-]x$", r"set [+-]x$",
r"set [+-]o xtrace$",
r"local \w+$", r"local \w+$",
r"local legacy_args=.*$", r"local legacy_args=.*$",
r".*Helper used in legacy mode.*", r".*Helper used in legacy mode.*",

View file

@ -206,6 +206,7 @@ def log_display(path, number=None, share=False, filter_irrelevant=False):
if filter_irrelevant: if filter_irrelevant:
filters = [ filters = [
r"set [+-]x$", r"set [+-]x$",
r"set [+-]o xtrace$",
r"local \w+$", r"local \w+$",
r"local legacy_args=.*$", r"local legacy_args=.*$",
r".*Helper used in legacy mode.*", r".*Helper used in legacy mode.*",