From 80adbd9f582bfd9aa553c808e40a683b049ff920 Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Wed, 15 Apr 2026 11:15:09 +0200 Subject: [PATCH] feat(logfiles): expand ignored log patterns for new and old tracing systems - Added patterns to ignore Debug and Info logs from both new and old tracing systems in `ERRORS_IGNORED`. --- cardano_node_tests/utils/logfiles.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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",