We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be036c0 commit 30875eaCopy full SHA for 30875ea
examples/tutorials/run_agent_test.sh
@@ -272,6 +272,19 @@ run_test() {
272
return 0
273
else
274
echo -e "${RED}❌ Tests failed for ${name}${NC}"
275
+
276
+ # Print agent logs to help with debugging
277
+ local logfile="/tmp/agentex-${name}.log"
278
+ if [[ -f "$logfile" ]]; then
279
+ echo ""
280
+ echo -e "${YELLOW}📋 Agent logs for debugging:${NC}"
281
+ echo "----------------------------------------"
282
+ tail -50 "$logfile"
283
284
+ else
285
+ echo -e "${YELLOW}⚠️ No agent log file found at: $logfile${NC}"
286
+ fi
287
288
return 1
289
fi
290
}
0 commit comments