Skip to content

Commit

Permalink
remove logging of token
Browse files Browse the repository at this point in the history
  • Loading branch information
hknots committed May 23, 2024
1 parent d53cee6 commit 3642943
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/no/fintlabs/linkwalker/LinkWalker.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ private CompletableFuture<Boolean> handleClientEvent(ClientEvent clientEvent, Ta
secretService.decrypt(client.getClientSecret())
).toFuture()
.thenApply(tokenResponse -> {
log.info("Token: {}", tokenResponse.access_token());
task.setToken(tokenResponse.access_token());
return true;
});
Expand Down

0 comments on commit 3642943

Please sign in to comment.