Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/woodoo-frog-of-growth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"stagehand": patch
---

fix logging param name
4 changes: 2 additions & 2 deletions stagehand/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ async def sweep_stalled_requests():
meta.pop(request_id, None)
self._stagehand.logger.debug(
"⏳ forcing completion of stalled iframe document",
extra={"url": request_meta["url"][:120]},
auxiliary={"url": request_meta["url"][:120]},
)
maybe_quiet()

Expand All @@ -620,7 +620,7 @@ async def timeout_guard():
if len(inflight) > 0:
self._stagehand.logger.debug(
"⚠️ DOM-settle timeout reached – network requests still pending",
extra={"count": len(inflight)},
auxiliary={"count": len(inflight)},
)
resolve_done()

Expand Down