Skip to content

Commit ef1cb6c

Browse files
committed
Add log for stepsComplete
1 parent 8acf42f commit ef1cb6c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

backend/src/run-agent-step.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export interface AgentOptions {
6767
params: Record<string, any> | undefined
6868
}
6969

70-
// Hi!
7170
export const runAgentStep = async (
7271
ws: WebSocket,
7372
options: AgentOptions,

backend/src/run-programmatic-step.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@ export async function runProgrammaticStep(
7575
throw new Error('No step handler found for agent template ' + template.id)
7676
}
7777

78+
logger.info(
79+
{
80+
stepsComplete,
81+
},
82+
`HIII Running programmatic step: stepsComplete: ${stepsComplete}`,
83+
)
84+
7885
logger.info(
7986
{
8087
templateId: template.id,

0 commit comments

Comments
 (0)