diff --git a/libs/langgraph/langgraph/pregel/__init__.py b/libs/langgraph/langgraph/pregel/__init__.py index 52cd2bf09..e714afe21 100644 --- a/libs/langgraph/langgraph/pregel/__init__.py +++ b/libs/langgraph/langgraph/pregel/__init__.py @@ -541,11 +541,6 @@ class Pregel(PregelProtocol): next_tasks[tid].writes.append((k, v)) if tasks := [t for t in next_tasks.values() if t.writes]: apply_writes(saved.checkpoint, channels, tasks, None) - print( - "next_tasks", - [(t.id, t.name, t.input, bool(t.writes)) for t in next_tasks.values()], - ) - print("pending_writes", saved.pending_writes) # assemble the state snapshot return StateSnapshot( read_channels(channels, self.stream_channels_asis),