From aa9cc9bd43e9eba92a32aaadde2a09c90b5836cf Mon Sep 17 00:00:00 2001 From: Reece O'Mahoney <66252930+reeceomahoney@users.noreply.github.com> Date: Thu, 26 Mar 2026 20:05:15 +0000 Subject: [PATCH] fix(logging): suppress noisy httpx INFO logs (#3173) Set httpx logger level to WARNING in init_logging to prevent HTTP request traces from flooding the terminal during train and eval scripts. Co-authored-by: Steven Palma --- src/lerobot/utils/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lerobot/utils/utils.py b/src/lerobot/utils/utils.py index b9f8441d6..f6aa93bea 100644 --- a/src/lerobot/utils/utils.py +++ b/src/lerobot/utils/utils.py @@ -95,6 +95,8 @@ def init_logging( file_handler.setLevel(file_level.upper()) logger.addHandler(file_handler) + logging.getLogger("httpx").setLevel(logging.WARNING) + def format_big_number(num, precision=0): suffixes = ["", "K", "M", "B", "T", "Q"]