We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a56d1fd commit 4d3657dCopy full SHA for 4d3657d
1 file changed
auth_providers/auth_oauth.go
@@ -231,6 +231,7 @@ func (b *CommandConfigOauth) GetHttpClient() (*http.Client, error) {
231
// Lazily initialize the token source and cache it
232
b.tsMu.Lock()
233
if b.tokenSource == nil {
234
+ log.Printf("[DEBUG] Initializing OAuth2 token source for client ID: %s", b.ClientID)
235
b.tokenSource = config.TokenSource(ctx)
236
}
237
tokenSource := b.tokenSource
0 commit comments