diff --git a/cardano_node_tests/utils/logfiles.py b/cardano_node_tests/utils/logfiles.py index ba64682fb..c405bbd1d 100644 --- a/cardano_node_tests/utils/logfiles.py +++ b/cardano_node_tests/utils/logfiles.py @@ -27,11 +27,13 @@ ERRORS_IGNORE_FILE_NAME = ".errors_to_ignore" ERRORS_IGNORED = [ - r"cardano\.node\.[^:]+:Debug:", - r"cardano\.node\.[^:]+:Info:", - "db-sync-node:Info:", - r"TxSubmitApi\.[^\]]*\]\(Info,", - "cardano-tx-submit:Info:", + # New tracing system + r"\]\(Debug,", + r"\]\(Info,", + # Old tracing system + ":Debug:", + ":Info:", + # Allowed errors "Event: LedgerUpdate", "trace.*ErrorPolicy", "ErrorPolicySuspendConsumer",