diff --git a/server.py b/server.py index 18bc139a..00e15063 100644 --- a/server.py +++ b/server.py @@ -146,8 +146,10 @@ def set_index_page(app): @app.after_request def after_request(res): # not logging /static call - if not request.path.startswith("/static") and not request.path.startswith( - "/admin/static" + if ( + not request.path.startswith("/static") + and not request.path.startswith("/admin/static") + and not request.path.startswith("/_debug_toolbar") ): LOG.debug( "%s %s %s %s %s",