Make CORS debug logs go quiet
Otherwise I'm just inundated with them and I'm rarely debugging CORS
This commit is contained in:
parent
f766f8dfa4
commit
fece65159a
|
@ -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():
|
||||
|
|
Loading…
Reference in New Issue