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
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue