From e20a287c4bd2c857568608c3d625b262a60a5d3c Mon Sep 17 00:00:00 2001 From: IcedTangerine Date: Mon, 20 Oct 2025 17:48:08 +0800 Subject: [PATCH] chore: Comment out debug log in adaptor.go Comment out the debug log for MiniMax TTS Request. --- relay/channel/minimax/adaptor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/channel/minimax/adaptor.go b/relay/channel/minimax/adaptor.go index fac0b9a9b..8235abc05 100644 --- a/relay/channel/minimax/adaptor.go +++ b/relay/channel/minimax/adaptor.go @@ -69,7 +69,7 @@ func (a *Adaptor) ConvertAudioRequest(c *gin.Context, info *relaycommon.RelayInf c.Set("response_format", outputFormat) // Debug: log the request structure - fmt.Printf("MiniMax TTS Request: %s\n", string(jsonData)) + // fmt.Printf("MiniMax TTS Request: %s\n", string(jsonData)) return bytes.NewReader(jsonData), nil }