Disable DEBUG logging for boto.
This commit is contained in:
parent
31ff854031
commit
85e1c96147
1 changed files with 3 additions and 0 deletions
|
@ -5,6 +5,9 @@ from app import app as application
|
||||||
|
|
||||||
logging.basicConfig(**application.config['LOGGING_CONFIG'])
|
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.api import api
|
||||||
from endpoints.index import index
|
from endpoints.index import index
|
||||||
|
|
Reference in a new issue