mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
feat: Include URL in page timeout warning message
This commit is contained in:
parent
fa256eb1a7
commit
a038bc002a
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ class Scraper:
|
|||
try:
|
||||
response = page.goto(url, wait_until="networkidle", timeout=5000)
|
||||
except PlaywrightTimeoutError:
|
||||
self.print_error(f"Page didn't quiesce, scraping content anyway")
|
||||
self.print_error(f"Page didn't quiesce, scraping content anyway: {url}")
|
||||
response = None
|
||||
except PlaywrightError as e:
|
||||
self.print_error(f"Error navigating to {url}: {str(e)}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue