Skip to content

Commit d200866

Browse files
committed
HTTP-166 Optimize HttpHeaderUtils logging (getindata#167)
Signed-off-by: davidradl <[email protected]>
1 parent 2ccfd41 commit d200866

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
- optimized logging in HttpHeaderUtils.
6+
57
## [0.20.0] - 2025-05-23
68

79
- Added option to define a proxy for the lookup source (including authentication)

src/main/java/com/getindata/connectors/http/internal/utils/HttpHeaderUtils.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,7 @@ public static HeaderPreprocessor createOIDCHeaderPreprocessor(ReadableConfig rea
127127
.getOptional(SOURCE_LOOKUP_OIDC_AUTH_TOKEN_EXPIRY_REDUCTION);
128128
headerPreprocessor = HttpHeaderUtils.createOIDCAuthorizationHeaderPreprocessor(
129129
oidcAuthURL.get(), oidcTokenRequest.get(), oidcExpiryReduction);
130-
log.info("created HeaderPreprocessor " + headerPreprocessor
131-
+ " for OIDC oidcAuthURL=" + oidcAuthURL
132-
+ ", oidcTokenRequest=" + oidcTokenRequest
133-
+ ", oidcExpiryReduction=" + oidcExpiryReduction);
130+
log.info("created OIDC HeaderPreprocessor");
134131
}
135132
return headerPreprocessor;
136133
}

0 commit comments

Comments
 (0)