diff --git a/internal/pkg/jpush/client.go b/internal/pkg/jpush/client.go index d10b885..60b57e5 100644 --- a/internal/pkg/jpush/client.go +++ b/internal/pkg/jpush/client.go @@ -211,7 +211,7 @@ func (c *Client) parseResponse(resp *http.Response, body []byte) (*PushResponse, func (c *Client) Push(payload map[string]any) (*PushResponse, *RateLimitInfo, error) { body, _ := json.Marshal(payload) - c.logger.Debug("jpush push request", zap.Int("body_size", len(body))) + c.logger.Info("jpush push request", zap.String("body", string(body))) resp, respBody, rateLimit, err := c.doRequest("POST", PushAPIBaseURL+"/push", payload) if err != nil {