Skip to content

Commit 741c11e

Browse files
authored
Merge branch 'main' into trustbloc
2 parents 3e95be8 + 8a7c144 commit 741c11e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

openapi/api_api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ func AuthorizationEndpoint(c *gin.Context) {
230230
}
231231

232232
func buildFrontendV2Address(protocol, host, state, clientId, redirectUri, scope, nonce string) string {
233-
logging.Log().Warn(fmt.Sprintf("%s://%s/api/v2/loginQR?state=%s&client_id=%s&redirect_uri=%s&scope=%s&nonce=%s&request_mode=byReference", protocol, host, state, clientId, redirectUri, scope, nonce))
233+
logging.Log().Debugf("%s://%s/api/v2/loginQR?state=%s&client_id=%s&redirect_uri=%s&scope=%s&nonce=%s&request_mode=byReference", protocol, host, state, clientId, redirectUri, scope, nonce)
234234
return fmt.Sprintf("%s://%s/api/v2/loginQR?state=%s&client_id=%s&redirect_uri=%s&scope=%s&nonce=%s&request_mode=byReference", protocol, host, state, clientId, redirectUri, scope, nonce)
235235
}
236236

verifier/verifier.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -884,8 +884,6 @@ func (v *CredentialVerifier) AuthenticationResponse(state string, verifiablePres
884884
return sameDevice, ErrorNoValidCredentialTypeProvided
885885
}
886886

887-
logging.Log().Warnf("properly handle inclusion config")
888-
889887
token, err := v.generateJWT(credentialsToBeIncluded, verifiablePresentation.Holder, hostname, flatClaims)
890888
if err != nil {
891889
logging.Log().Warnf("Was not able to create a jwt for %s. Err: %v", state, err)

0 commit comments

Comments
 (0)