增加日志,提交流程图
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 7m42s

This commit is contained in:
2026-04-22 14:49:09 +08:00
parent 9f8173e124
commit 0f58886454
24 changed files with 1477 additions and 119 deletions

View File

@@ -227,6 +227,8 @@ func doRequestWithResponse[T any](c *Client, ctx context.Context, path string, p
return nil, err
}
c.logger.Debug("Gateway 原始响应数据", zap.ByteString("data", data))
var result T
if err := sonic.Unmarshal(data, &result); err != nil {
return nil, errors.Wrap(errors.CodeGatewayInvalidResp, err, "解析 Gateway 响应失败")