Skip to content

Commit 81dab90

Browse files
feat: refine error logging in smoke tests to focus on ERROR level
1 parent 0e04931 commit 81dab90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/smoke-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ jobs:
5454
if: always()
5555
run: |
5656
echo "===== Highlighted Server Errors ====="
57-
if grep -E 'ERROR|Exception|WARN' logs/server.log > /dev/null; then
58-
grep -E 'ERROR|Exception|WARN' logs/server.log | while read -r line; do
57+
if grep 'ERROR' logs/server.log > /dev/null; then
58+
grep 'ERROR' logs/server.log | while read -r line; do
5959
echo "::error::${line}"
6060
done
6161
else
62-
echo "No errors or exceptions found in server logs."
62+
echo "No errors found in server logs."
6363
fi
6464
6565
- name: Upload server logs

0 commit comments

Comments
 (0)