Removed logging of headers as it caused trouble while showing logfile in UI

This commit is contained in:
Ozzieisaacs 2020-09-26 07:51:29 +02:00
parent 422c1893c0
commit 9a896ea81e
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ def add_security_headers(resp):
resp.headers['X-Frame-Options'] = 'SAMEORIGIN'
resp.headers['X-XSS-Protection'] = '1; mode=block'
resp.headers['Strict-Transport-Security'] = 'max-age=31536000; includeSubDomains'
log.debug(request.headers)
# log.debug(request.full_path)
return resp
web = Blueprint('web', __name__)