Suppress httpx/openai debug noise in logging

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-08-01 22:25:38 -04:00
parent 7fefb3ac37
commit 377e423887
+2
View File
@@ -20,6 +20,8 @@ logging.basicConfig(
format="%(asctime)s %(levelname)s %(name)s: %(message)s", format="%(asctime)s %(levelname)s %(name)s: %(message)s",
datefmt="%H:%M:%S", datefmt="%H:%M:%S",
) )
for _noisy in ("httpx", "httpcore", "openai"):
logging.getLogger(_noisy).setLevel(logging.WARNING)
log = logging.getLogger("bikeslop") log = logging.getLogger("bikeslop")
GPX_DIR = Path(__file__).parent / "garmin_gpx_exports" GPX_DIR = Path(__file__).parent / "garmin_gpx_exports"