What is the default Celery log level if none is specified?

14,977

Default log level in Celery is WARNING due implementation here. That level is set during initialization of the Logging instance.

Share:
14,977

Related videos on Youtube

dukebody
Author by

dukebody

Free Software enthusiast with interest in Python for Data Science and Big Data engineering.

Updated on June 27, 2022

Comments

  • dukebody
    dukebody about 2 years

    According to the Celery documentation, the -l/--loglevel command line option can be used for:

    -l, --loglevel

    Logging level, choose between DEBUG, INFO, WARNING, ERROR, CRITICAL, or FATAL.

    If this option is not used and therefore no log level is specified, what is the log level used by Celery by default?

  • Shiv Krishna Jaiswal
    Shiv Krishna Jaiswal almost 3 years
    is there a way to specify this into celeryconfig.py file?