Disable DEBUG logging for boto.

This commit is contained in:
yackob03 2014-01-30 19:48:39 -05:00
parent 31ff854031
commit 85e1c96147

View file

@ -5,6 +5,9 @@ from app import app as application
logging.basicConfig(**application.config['LOGGING_CONFIG'])
# Turn off debug logging for boto
logging.getLogger('boto').setLevel(logging.CRITICAL)
from endpoints.api import api
from endpoints.index import index