This commit is contained in:
nose
2025-12-17 17:42:46 -08:00
parent d2e7385280
commit 76691dbbf5
9 changed files with 762 additions and 119 deletions

8
CLI.py
View File

@@ -855,6 +855,14 @@ def _create_cmdlet_cli():
format='[%(name)s] %(levelname)s: %(message)s',
stream=sys.stderr
)
# httpx/httpcore can be extremely verbose and will drown useful debug output,
# especially when invoked from MPV (where console output is truncated).
for noisy in ("httpx", "httpcore", "httpcore.http11", "httpcore.connection"):
try:
logging.getLogger(noisy).setLevel(logging.WARNING)
except Exception:
pass
# Handle seeds if provided
if seeds_json: