From 85e1c96147f8caa3199d60d3fbd366180f3a989c Mon Sep 17 00:00:00 2001 From: yackob03 Date: Thu, 30 Jan 2014 19:48:39 -0500 Subject: [PATCH] Disable DEBUG logging for boto. --- application.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application.py b/application.py index 26101f50b..74847a0c1 100644 --- a/application.py +++ b/application.py @@ -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