01
Apr
Disabling boto debug logging in Django
in Technology
Comments
Ever been annoyed by the multitude of AWS S3 logs you see inside a celery task on file operations? If the answer is yes then the solution is simple
add the following lines before your LOGGING settings in your Django settings file
import logging logging.getLogger('boto').propagate = False