Skip to content

Commit f9974dd

Browse files
committed
Revert "fix(run-engine): log snapshot ids instead of full objects on the unblock path"
This reverts commit 36c6a3f.
1 parent 36c6a3f commit f9974dd

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

internal-packages/run-engine/src/engine/systems/waitpointSystem.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -905,15 +905,12 @@ export class WaitpointSystem {
905905
completedWaitpoints: completedWaitpointArgs,
906906
});
907907

908-
// Log IDs only — full snapshots include completedWaitpoint outputs, and this
909-
// runs at debug level in prod where cloning them would burn event-loop time.
910908
this.$.logger.debug(
911909
`continueRunIfUnblocked: run was still executing, sending notification`,
912910
{
913911
runId,
914-
previousSnapshotId: snapshot.id,
915-
newSnapshotId: newSnapshot.id,
916-
completedWaitpointCount: blockingWaitpoints.length,
912+
snapshot,
913+
newSnapshot,
917914
}
918915
);
919916

0 commit comments

Comments
 (0)