We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f2561b + da293fa commit 7540214Copy full SHA for 7540214
authenticationhandler/auth_oauth.go
@@ -48,7 +48,7 @@ func (h *AuthTokenHandler) ObtainOAuthToken(apiHandler apihandler.APIHandler, ht
48
data.Set("scope", oauthTokenScope)
49
data.Set("grant_type", "client_credentials")
50
51
- h.Logger.Debug("Attempting to obtain OAuth token", zap.String("ClientID", clientID))
+ h.Logger.Debug("Attempting to obtain OAuth token", zap.String("ClientID", clientID), zap.String("Scope", oauthTokenScope))
52
53
req, err := http.NewRequest("POST", authenticationEndpoint, strings.NewReader(data.Encode()))
54
if err != nil {
0 commit comments