ec2: Silence both boto & boto3 during bootstrapping

This commit is contained in:
Anders Ingemann 2018-07-19 13:01:35 +02:00
parent 7a845fcd81
commit b451c81348
No known key found for this signature in database
GPG key ID: 16A5864B259E59CD

View file

@ -12,6 +12,7 @@ class SilenceBotoDebug(Task):
# Regardless of of loglevel, we don't want boto debug stuff, it's very noisy
import logging
logging.getLogger('boto').setLevel(logging.INFO)
logging.getLogger('boto3').setLevel(logging.INFO)
class GetCredentials(Task):