From c58955d147bf757bbac8ecbf29502729e8bd1e7b Mon Sep 17 00:00:00 2001 From: Luis Garcia Date: Sun, 27 Oct 2024 16:34:32 -0600 Subject: [PATCH] CI: Print marklog on failed validation --- test/validate_ci_marklog.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/validate_ci_marklog.py b/test/validate_ci_marklog.py index 906dfa9..9cd1d79 100644 --- a/test/validate_ci_marklog.py +++ b/test/validate_ci_marklog.py @@ -164,6 +164,7 @@ def main(): lines = read_marklog() if not check_marklog(lines, expected_values): print("Failed to validate marklog") + print(lines) exit(1) print("Successfully validated marklog")