hkjh
This commit is contained in:
8
CLI.py
8
CLI.py
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user