From c5df806ad2c500fac4baa8c54d1ab47ea38f4586 Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Tue, 23 Sep 2025 00:04:31 +0800 Subject: [PATCH] chore(executor): add debug logging for API request errors - Added detailed debug logs in all executors (Codex, Claude, Gemini, Qwen, OpenAI-compatible) to capture HTTP status and response body for failed API requests. --- sdk/cliproxy/auth/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/cliproxy/auth/manager.go b/sdk/cliproxy/auth/manager.go index d3287bb2..ee866ae4 100644 --- a/sdk/cliproxy/auth/manager.go +++ b/sdk/cliproxy/auth/manager.go @@ -581,7 +581,7 @@ func (m *Manager) StopAutoRefresh() { } func (m *Manager) checkRefreshes(ctx context.Context) { - log.Debugf("checking refreshes") + // log.Debugf("checking refreshes") now := time.Now() snapshot := m.snapshotAuths() for _, a := range snapshot {