ignore annoying logger with useless output

This commit is contained in:
burnettk 2023-04-17 16:40:51 -04:00
parent 8fe98812fc
commit 8032e1f419
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ def setup_logger(app: Flask) -> None:
spiff_logger_filehandler.setFormatter(log_formatter)
# these loggers have been deemed too verbose to be useful
garbage_loggers_to_exclude = ["connexion"]
garbage_loggers_to_exclude = ["connexion", "flask_cors.extension"]
# make all loggers act the same
for name in logging.root.manager.loggerDict: