From 4d9ed77e144288d9ece78328154d883555409949 Mon Sep 17 00:00:00 2001 From: Petar Radovic Date: Wed, 8 Apr 2026 21:07:03 +0200 Subject: [PATCH] debug --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 140d9e8a..a1fbb2a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -215,8 +215,11 @@ jobs: kill "$(cat /tmp/log-watcher.pid)" 2>/dev/null || true for f in /tmp/container-logs/*.log; do [ -e "$f" ] || continue - echo "=== $f ===" - tail -300 "$f" + echo "=== $f (lines: $(wc -l < $f)) ===" + echo "--- proposed-block events with removals ---" + grep -B 200 -A 5 -E '\([1-9][0-9]* removed\)' "$f" | tail -3000 || true + echo "--- mempool/tx/inscribe activity ---" + grep -i -E 'mempool|inscrib|verif|reject|invalid|gas|validate|removed' "$f" | tail -1000 || true done valid-proof-test: