From 377e423887abf9cfd3159768406bfe6e6215f0d2 Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Sat, 1 Aug 2026 22:25:38 -0400 Subject: [PATCH] Suppress httpx/openai debug noise in logging Co-Authored-By: Claude Sonnet 4.6 --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index d42aacc..1b7bdf1 100644 --- a/app.py +++ b/app.py @@ -20,6 +20,8 @@ logging.basicConfig( format="%(asctime)s %(levelname)s %(name)s: %(message)s", datefmt="%H:%M:%S", ) +for _noisy in ("httpx", "httpcore", "openai"): + logging.getLogger(_noisy).setLevel(logging.WARNING) log = logging.getLogger("bikeslop") GPX_DIR = Path(__file__).parent / "garmin_gpx_exports"