chore(logging): add debug logs for executor Refresh methods

- Introduced `logrus` for structured debugging across all executors.
- Added debug log messages in `Refresh` methods for better traceability.
- Updated `Manager` to log additional details during refresh checks.
This commit is contained in:
Luis Pater
2025-09-22 20:03:31 +08:00
parent 4008be19f4
commit 837ae1b1b3
8 changed files with 15 additions and 0 deletions

View File

@@ -255,6 +255,7 @@ func (e *GeminiCLIExecutor) ExecuteStream(ctx context.Context, auth *cliproxyaut
}
func (e *GeminiCLIExecutor) Refresh(ctx context.Context, auth *cliproxyauth.Auth) (*cliproxyauth.Auth, error) {
// log.Debugf("gemini cli executor: refresh called")
_ = ctx
return auth, nil
}