How to suppress log messages from Docker pull?
I am using DockerOperator
in Airflow set to pull the image before executing. The pull step generates a lot of log spam:
How can I suppress these? Ideally I would like to have only 1 line that says whether the pull is succeeded or not.
Simply turning off INFO
level logs is not an option here as I do want other INFO
output. I want to suppress only Docker pull messages.
Source: Docker Questions