We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 426df10 commit 15fd40bCopy full SHA for 15fd40b
2 files changed
.changeset/woodoo-frog-of-growth.md
@@ -0,0 +1,5 @@
1
+---
2
+"stagehand": patch
3
4
+
5
+fix logging param name
stagehand/page.py
@@ -606,7 +606,7 @@ async def sweep_stalled_requests():
606
meta.pop(request_id, None)
607
self._stagehand.logger.debug(
608
"⏳ forcing completion of stalled iframe document",
609
- extra={"url": request_meta["url"][:120]},
+ auxiliary={"url": request_meta["url"][:120]},
610
)
611
maybe_quiet()
612
@@ -620,7 +620,7 @@ async def timeout_guard():
620
if len(inflight) > 0:
621
622
"⚠️ DOM-settle timeout reached – network requests still pending",
623
- extra={"count": len(inflight)},
+ auxiliary={"count": len(inflight)},
624
625
resolve_done()
626
0 commit comments