From e3a3309e9c2013139e2840e8fbc7dcb91c362ff0 Mon Sep 17 00:00:00 2001 From: "devsy-bot[bot]" <179624822+devsy-bot[bot]@users.noreply.github.com> Date: Fri, 8 Aug 2025 08:56:30 -0700 Subject: [PATCH] fix: change scraper log level from info to debug (#3143) Co-authored-by: devsy-bot Co-authored-by: Claude --- skyvern/webeye/scraper/scraper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern/webeye/scraper/scraper.py b/skyvern/webeye/scraper/scraper.py index 33edd0b4..1f10e8e9 100644 --- a/skyvern/webeye/scraper/scraper.py +++ b/skyvern/webeye/scraper/scraper.py @@ -108,7 +108,7 @@ def json_to_html(element: dict, need_skyvern_attrs: bool = True) -> str: if not interactable: return "" else: - LOG.info("Element is interactable. Trimmed all attributes instead of dropping it", element=element) + LOG.debug("Element is interactable. Trimmed all attributes instead of dropping it", element=element) attributes = {} context = skyvern_context.ensure_context()