如果指定 none,默认的 Celery 日志级别是多少?
What is the default Celery log level if none is specified?
根据 Celery documentation,-l/--loglevel
命令行选项可用于:
-l, --loglevel
Logging level, choose between DEBUG, INFO, WARNING, ERROR, CRITICAL, or FATAL.
如果不使用该选项,则没有指定日志级别,那么Celery默认使用的日志级别是多少?
Celery 中的默认日志级别是 WARNING
由于 Logging 实例的实施 here. That level is set during initialization。
根据 Celery documentation,-l/--loglevel
命令行选项可用于:
-l, --loglevel
Logging level, choose between DEBUG, INFO, WARNING, ERROR, CRITICAL, or FATAL.
如果不使用该选项,则没有指定日志级别,那么Celery默认使用的日志级别是多少?
Celery 中的默认日志级别是 WARNING
由于 Logging 实例的实施 here. That level is set during initialization。