Explorar el Código

corrected log for body

ash hace 2 años
padre
commit
2ac4885789
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      Backend/Sources/View/view_manager.py

+ 2 - 1
Backend/Sources/View/view_manager.py

@@ -63,7 +63,8 @@ def init() :
         logger.debug("request from " + request.remote_addr)
         logger.debug("request header" + str(request.headers.__dict__))
 
-        logger.debug("request body" + request.json)
+        if request.json :
+            logger.debug("request json body : " + str(request.json))
 
 
         if not "client_id" in session :