moto/tests/test_packages/__init__.py

9 lines
255 B
Python
Raw Normal View History

from __future__ import unicode_literals
import logging
2019-10-31 15:44:26 +00:00
# Disable extra logging for tests
2019-10-31 15:44:26 +00:00
logging.getLogger("boto").setLevel(logging.CRITICAL)
logging.getLogger("boto3").setLevel(logging.CRITICAL)
logging.getLogger("botocore").setLevel(logging.CRITICAL)