vishalanandl177 / DRF-API-Logger

An API Logger for your Django Rest Framework project.
https://github.com/vishalanandl177/DRF-API-Logger
Apache License 2.0
303 stars 57 forks source link

Unicode Escape problem #53

Closed vbuoc closed 1 year ago

vbuoc commented 2 years ago

How can I fix problem with Unicode Escape?

Снимок экрана 2022-06-23 в 16 56 21
ViokingTung commented 2 years ago

https://github.com/vishalanandl177/DRF-API-Logger/blob/a6e1b34657467bc337730918cf1d003eb87f729d/drf_api_logger/middleware/api_logger_middleware.py#L136-L139 caused by json.dump(), you maybe set ensure_ascii=False can resvole this problem.

vishalanandl177 commented 2 years ago

Let me test this.