Skip to content

Commit 8221d67

Browse files
committed
fix: reduce log level to debug to avoid flooding terminal for subdomain bruteforcing
1 parent d219213 commit 8221d67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shadowgate/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ async def _worker(self, url: str) -> ProbeResult:
198198
httpx.HTTPStatusError,
199199
httpx.ConnectTimeout,
200200
) as e:
201-
log.warning("Network error", extra={"url": url, "error": type(e).__name__})
201+
log.debug("Network error", extra={"url": url, "error": type(e).__name__})
202202
return ProbeResult(url=url, status=None, ok=False, error=type(e).__name__)
203203
except Exception as e:
204204
log.error(

0 commit comments

Comments
 (0)