enhance exception logging

This commit is contained in:
Emmanuel Viennet 2021-09-27 22:58:05 +02:00
parent a8198f889a
commit 550a7888bf
1 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@
# pylint: disable=invalid-name
import os
import reprlib
import socket
import sys
import time
@ -112,8 +111,8 @@ class LogExceptionFormatter(logging.Formatter):
if request.method == "GET":
record.http_params = str(request.args)
else:
rep = reprlib.Repr() # abbrège
record.http_params = str(rep.repr(request.form))
# rep = reprlib.Repr() # abbrège
record.http_params = str(request.form)[:2048]
else:
record.url = None
record.remote_addr = None