From fbe226e315b9bb7099b4a44851a0e80c48d437ef Mon Sep 17 00:00:00 2001 From: justundertaker <806792561@qq.com> Date: Thu, 27 Oct 2022 18:11:23 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20fixed=20#3=20=E8=B0=83=E7=94=A8?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=8F=91=E9=80=81=E6=8B=8D=E4=B8=80=E6=8B=8D?= =?UTF-8?q?=E6=88=96=E8=80=85=E5=9B=BE=E7=89=87=20=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ntchat_client/http/http_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntchat_client/http/http_api.py b/ntchat_client/http/http_api.py index 385be58..3f9d3e4 100644 --- a/ntchat_client/http/http_api.py +++ b/ntchat_client/http/http_api.py @@ -27,6 +27,6 @@ async def _(action: str, response: Response, params=Body(None)) -> None: res = wechat_client.handle_http_api(http_request) response.headers["X-self-ID"] = wechat_client.self_id response.headers["access_token"] = wechat_client.config.access_token - logger.info(f"http_api - 调用返回:{escape_tag(res.dict())}") + logger.info(f"http_api - 调用返回:{escape_tag(str(res))}") return res