7 lines
214 B
Python
7 lines
214 B
Python
import logging
|
|
|
|
# Disable extra logging for tests
|
|
logging.getLogger("boto").setLevel(logging.CRITICAL)
|
|
logging.getLogger("boto3").setLevel(logging.CRITICAL)
|
|
logging.getLogger("botocore").setLevel(logging.CRITICAL)
|