Skip to content

Commit 3472fba

Browse files
committed
Change log level
1 parent 7f7d84d commit 3472fba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/kidsfirst/core/service/FenceService.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public Optional<Tokens> refreshTokens(String refreshToken, Provider fence) throw
2828
val clientSecret = fence.getClientSecret();
2929
val fenceEndpoint = fence.getEndpoint();
3030

31-
log.info("request tokens, client_id={}, client_secret={}, fence_endpoint={}, refresh_token={}",
31+
log.debug("request tokens, client_id={}, client_secret={}, fence_endpoint={}, refresh_token={}",
3232
clientId,
3333
obfuscate(clientSecret),
3434
fenceEndpoint,
@@ -63,7 +63,7 @@ public Optional<OIDCTokens> requestTokens(String authCode, Provider fence) throw
6363
String clientSecret = fence.getClientSecret();
6464
String fenceEndpoint = fence.getEndpoint();
6565
String redirectUri = fence.getRedirectUri();
66-
log.info("request tokens, client_id={}, client_secret={}, fence_endpoint={}, auth_code={}, redirect_uri={}",
66+
log.debug("request tokens, client_id={}, client_secret={}, fence_endpoint={}, auth_code={}, redirect_uri={}",
6767
clientId,
6868
obfuscate(clientSecret),
6969
fenceEndpoint,

0 commit comments

Comments
 (0)