fix: suppress verbose httpx HTTP request logs

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
EstrellaXD
2026-01-26 17:08:29 +01:00
parent 359b3e5253
commit 47a10d5828

View File

@@ -29,3 +29,6 @@ def setup_logger(level: int = logging.INFO, reset: bool = False):
logging.StreamHandler(),
],
)
# Suppress verbose HTTP request logs from httpx
logging.getLogger("httpx").setLevel(logging.WARNING)