From e2ab5bcb138a93e59402f52cd842227bac9de37f Mon Sep 17 00:00:00 2001 From: yys <47@gamerwa.com> Date: Thu, 2 Apr 2026 16:29:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/ruoyi/ai/service/impl/BaseByteApiService.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web-api/ruoyi-system/src/main/java/com/ruoyi/ai/service/impl/BaseByteApiService.java b/web-api/ruoyi-system/src/main/java/com/ruoyi/ai/service/impl/BaseByteApiService.java index 5097565..30a0deb 100644 --- a/web-api/ruoyi-system/src/main/java/com/ruoyi/ai/service/impl/BaseByteApiService.java +++ b/web-api/ruoyi-system/src/main/java/com/ruoyi/ai/service/impl/BaseByteApiService.java @@ -125,6 +125,7 @@ public class BaseByteApiService { .header("Authorization", signed.authorization) .post(requestBody) .build(); + log.info("向火山发送请求, body = {}", body); try (Response response = httpClient.newCall(okRequest).execute()) { if (responseClass == null) { return null; @@ -133,6 +134,7 @@ public class BaseByteApiService { if (!response.isSuccessful()) { throw new IOException("HTTP " + response.code() + ": " + respBody); } + log.info("返回结果, respBody = {}", respBody); return parseResult(respBody, responseClass); } }