Skip to content

Commit

Permalink
log less
Browse files Browse the repository at this point in the history
  • Loading branch information
janolaveide committed Jan 28, 2025
1 parent 1ddbed4 commit 2a3c80f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class OAuth2ClientRequestInterceptor(private val properties: ClientConfiguration
override fun intercept(req: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse {
log.trace("Intercepting request to {}", req.uri)
matcher.findProperties(properties, req.uri)?.let {
log.trace("Found properties {} for uri {}", it, req.uri)
log.trace("Found properties for uri {}", req.uri)
service.getAccessToken(it).access_token?.let {
token -> req.headers.setBearerAuth(token)
log.trace("Finished setting Authorization header with accesstoken OK")
Expand Down

0 comments on commit 2a3c80f

Please # to comment.