remove annoying logs - "wait for animation end" (#3275)

This commit is contained in:
Shuchang Zheng
2025-08-30 03:57:42 +08:00
committed by GitHub
parent 2390bf8917
commit 33e9919193

View File

@@ -523,7 +523,7 @@ class SkyvernFrame:
await self.frame.wait_for_load_state("load", timeout=timeout_ms)
await self.wait_for_animation_end(timeout_ms=timeout_ms)
except Exception:
LOG.info("Failed to wait for animation end, but ignore it", exc_info=True)
LOG.debug("Failed to wait for animation end, but ignore it", exc_info=True)
return
async def wait_for_animation_end(self, timeout_ms: float = 3000) -> None: