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)
|
LOGGER.info("Starting up vanth version %s", vanth.version.VERSION)
|
||||||
application = vanth.server.create_app(config)
|
application = vanth.server.create_app(config)
|
||||||
|
|
||||||
|
logging.getLogger('vanth.cors').setLevel(logging.WARNING)
|
||||||
|
|
||||||
return application
|
return application
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue