fix: add debug logging for client response in json_adapter method

1 parent 24bcccee
...@@ -223,6 +223,7 @@ class ApiViews(APIView): ...@@ -223,6 +223,7 @@ class ApiViews(APIView):
""" """
Mengubah data menjadi list dan convert objek menjadi string Mengubah data menjadi list dan convert objek menjadi string
""" """
_log.debug("Response to Client: %s", data)
if not isinstance(data, list): if not isinstance(data, list):
data = [data] data = [data]
for i, item in enumerate(data): for i, item in enumerate(data):
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!