[BACKEND] Default log level verbose (#1256)
Makes `--log-level verbose` the new default, which now shows yt-dlp logs. Use `--log-level info` to hide yt-dlp logs.
This commit is contained in:
parent
9871f62b91
commit
a055c9b07a
1 changed files with 2 additions and 2 deletions
|
|
@ -111,8 +111,8 @@ def _add_shared_arguments(arg_parser: argparse.ArgumentParser, suppress_defaults
|
||||||
MainArguments.LOG_LEVEL.long,
|
MainArguments.LOG_LEVEL.long,
|
||||||
metavar="|".join(LoggerLevels.names()),
|
metavar="|".join(LoggerLevels.names()),
|
||||||
type=str,
|
type=str,
|
||||||
help="level of logs to print to console, defaults to info",
|
help="level of logs to print to console, defaults to verbose",
|
||||||
default=argparse.SUPPRESS if suppress_defaults else LoggerLevels.INFO.name,
|
default=argparse.SUPPRESS if suppress_defaults else LoggerLevels.VERBOSE.name,
|
||||||
choices=LoggerLevels.names(),
|
choices=LoggerLevels.names(),
|
||||||
dest="ytdl_sub_log_level",
|
dest="ytdl_sub_log_level",
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue