do not add log for /git and /favicon.ico

This commit is contained in:
Son 2021-11-06 18:26:39 +01:00
parent 429683f444
commit 827b90432c
1 changed files with 2 additions and 0 deletions

View File

@ -497,6 +497,8 @@ def set_index_page(app):
not request.path.startswith("/static")
and not request.path.startswith("/admin/static")
and not request.path.startswith("/_debug_toolbar")
and not request.path.startswith("/git")
and not request.path.startswith("/favicon.ico")
):
LOG.d(
"%s %s %s %s %s, takes %s",