Don't log the request details for REST calls.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -48,7 +48,7 @@ def authenticator = new FilterRequestAuthenticator(keycloakDeployment, tokenStor | ... | @@ -48,7 +48,7 @@ def authenticator = new FilterRequestAuthenticator(keycloakDeployment, tokenStor |
48 | ec.logger.info("authenticator: ${authenticator}") | 48 | ec.logger.info("authenticator: ${authenticator}") |
49 | def outcome = authenticator.authenticate() | 49 | def outcome = authenticator.authenticate() |
50 | ec.logger.info("rest:outcome: ${outcome}") | 50 | ec.logger.info("rest:outcome: ${outcome}") |
51 | ec.logger.info("request: ${ec.web.requestDetails}") | 51 | //ec.logger.info("request: ${ec.web.requestDetails}") |
52 | if (outcome == AuthOutcome.AUTHENTICATED) { | 52 | if (outcome == AuthOutcome.AUTHENTICATED) { |
53 | if (facade.isEnded()) { | 53 | if (facade.isEnded()) { |
54 | ec.logger.info('facade has ended') | 54 | ec.logger.info('facade has ended') | ... | ... |
-
Please register or sign in to post a comment