From ceeea2c451f08d28ff0cdbeddcd3805337937b1c Mon Sep 17 00:00:00 2001 From: xRain Date: Tue, 23 Jun 2026 16:13:04 +0800 Subject: [PATCH] =?UTF-8?q?http=E5=AE=A2=E6=88=B7=E7=AB=AF=E5=8A=A0?= =?UTF-8?q?=E5=AF=86debug=E8=BE=93=E5=87=BA,=E7=89=88=E6=9C=AC=E5=8D=87?= =?UTF-8?q?=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Helpers/SimApiHttpClient.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Helpers/SimApiHttpClient.cs b/Helpers/SimApiHttpClient.cs index 2cd7b74..0dda39e 100644 --- a/Helpers/SimApiHttpClient.cs +++ b/Helpers/SimApiHttpClient.cs @@ -67,7 +67,7 @@ public class SimApiHttpClient(SimApiOptions? apiOptions = null, ILogger { Data = SimApiAesUtil.Encrypt(SimApiUtil.Json(body), AppKey) @@ -85,6 +85,7 @@ public class SimApiHttpClient(SimApiOptions? apiOptions = null, ILogger public T AesSignQuery(string url, object body, Dictionary? queries = null) { + logger?.LogDebug($"[HTTPCLIENT请求][加密前BODY] {url}\n{SimApiUtil.Json(body)}\n"); var req = new SimApiOneFieldRequest { Data = SimApiAesUtil.Encrypt(SimApiUtil.Json(body), AppKey)