We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54996c2 commit bd1a129Copy full SHA for bd1a129
examples/tutorials/run_agent_test.sh
@@ -78,7 +78,14 @@ wait_for_agent_ready() {
78
done
79
80
echo -e "${RED}❌ Timeout waiting for ${name} agent to be ready${NC}"
81
- echo "Check logs: tail -f $logfile"
+ echo -e "${YELLOW}📋 Agent logs:${NC}"
82
+ if [[ -f "$logfile" ]]; then
83
+ echo "----------------------------------------"
84
+ tail -50 "$logfile"
85
86
+ else
87
+ echo "❌ Log file not found: $logfile"
88
+ fi
89
return 1
90
}
91
0 commit comments