9 lines
307 B
Python
9 lines
307 B
Python
|
from __future__ import unicode_literals
|
||
|
|
||
|
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)
|
||
|
logging.getLogger('nose').setLevel(logging.CRITICAL)
|