How to disable Celery startup logs?

I'm getting a bunch of logs like this:

[2025-11-29 16:13:15,731] 
def group(self, tasks, result, group_id, partial_args, add_to_parent=0):
    return 1

[2025-11-29 16:13:15,732] 
def xmap(task, it):
    return 1

[2025-11-29 16:13:15,732] 
def backend_cleanup():
    return 1

I don't need these logs. It's useless spam to me.

How do I disable this?

Вернуться на верх