Make CORS debug logs go quiet

Otherwise I'm just inundated with them and I'm rarely debugging CORS
This commit is contained in:
Eli Ribble 2016-05-17 11:07:01 -06:00
parent f766f8dfa4
commit fece65159a
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,9 @@ def create_application(config):
LOGGER.info("Starting up vanth version %s", vanth.version.VERSION)
application = vanth.server.create_app(config)
logging.getLogger('vanth.cors').setLevel(logging.WARNING)
return application
def main():