From a8fd1166a2ccfd68cc57a734f5cc54858aa1f488 Mon Sep 17 00:00:00 2001 From: Kurt Biery Date: Mon, 11 May 2026 10:44:10 -0500 Subject: [PATCH] Updated the filtering of drunc messages when the verbosity level of integtests is reduced to handle "In error" messages with special formatting. --- src/integrationtest/integrationtest_drunc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/integrationtest/integrationtest_drunc.py b/src/integrationtest/integrationtest_drunc.py index 406af21..de27c8f 100755 --- a/src/integrationtest/integrationtest_drunc.py +++ b/src/integrationtest/integrationtest_drunc.py @@ -678,7 +678,7 @@ class RunResult: # check for errors and warnings for all verbosity levels if should_be_printed == False: - if ("error" in line.lower() and not " In error " in line) or "warning" in line.lower(): + if ("error" in line.lower() and (not "In error" in line and not "Endpoint" in line)) or "warning" in line.lower(): should_be_printed = True # check for basic transition messages, if that level of verbosity is requested