@@ -14,7 +14,6 @@ export const workflowStart = (
1414) => {
1515 const { state, logger } = context ;
1616 const { workflowId, threadId } = event ;
17-
1817 logger . info ( 'starting workflow ' , workflowId ) ;
1918
2019 // where would this throw get caught?
@@ -68,7 +67,9 @@ export const jobStart = (
6867 context : ExecutionContext ,
6968 event : internalEvents . JobStartEvent
7069) => {
70+ const { logger, state } = context ;
7171 const { threadId, jobId } = event ;
72+ logger . debug ( `${ state . id } : sending job start (step start): ${ event . jobId } ` ) ;
7273
7374 context . emit ( externalEvents . JOB_START , {
7475 jobId,
@@ -81,7 +82,11 @@ export const jobComplete = (
8182 context : ExecutionContext ,
8283 event : internalEvents . JobCompleteEvent
8384) => {
85+ const { logger, state : runState } = context ;
8486 const { threadId, state, duration, jobId, next, mem, redacted } = event ;
87+ logger . debug (
88+ `${ runState . id } : sending job complete (step complete): ${ event . jobId } `
89+ ) ;
8590
8691 context . emit ( externalEvents . JOB_COMPLETE , {
8792 threadId,
0 commit comments