From dc94765d3291faf0e168ecb49c562840ce4799b0 Mon Sep 17 00:00:00 2001 From: JustSong Date: Sun, 18 Jun 2023 00:22:22 +0800 Subject: [PATCH] fix: do not print response to console --- controller/channel-billing.go | 1 - 1 file changed, 1 deletion(-) diff --git a/controller/channel-billing.go b/controller/channel-billing.go index c9c52475..4f89c6ed 100644 --- a/controller/channel-billing.go +++ b/controller/channel-billing.go @@ -143,7 +143,6 @@ func updateChannelAPI2GPTBalance(channel *model.Channel) (float64, error) { } response := API2GPTUsageResponse{} err = json.Unmarshal(body, &response) - fmt.Print(response) if err != nil { return 0, err }