From 4b7d5ffff4664b71208a76265755a03ce9a215b3 Mon Sep 17 00:00:00 2001 From: Thomas <> Date: Wed, 28 Sep 2022 13:55:50 +0200 Subject: chore(core): change log-level to info to get more information about invalid pendingRequestId's --- .../AuthenticatedEncryptionPendingRequestIdGenerationStrategy.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'eaaf_core_utils') diff --git a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/AuthenticatedEncryptionPendingRequestIdGenerationStrategy.java b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/AuthenticatedEncryptionPendingRequestIdGenerationStrategy.java index cbf2be5a..082a8315 100644 --- a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/AuthenticatedEncryptionPendingRequestIdGenerationStrategy.java +++ b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/AuthenticatedEncryptionPendingRequestIdGenerationStrategy.java @@ -109,7 +109,7 @@ public class AuthenticatedEncryptionPendingRequestIdGenerationStrategy } catch (JoseException e) { log.warn("Token is NOT a valid String. Msg: {}", e.getMessage()); - log.debug("TokenValue: {}", externalPendingReqId); + log.info("TokenValue: {}", externalPendingReqId); throw new PendingReqIdValidationException(null, "internal.pendingreqid.05", e); } @@ -148,12 +148,12 @@ public class AuthenticatedEncryptionPendingRequestIdGenerationStrategy } catch (JoseException e) { log.warn("Token is NOT a valid encrypt. Msg: {}", e.getMessage()); - log.debug("TokenValue: {}", externalPendingReqId); + log.info("TokenValue: {}", externalPendingReqId); throw new PendingReqIdValidationException(null, "internal.pendingreqid.04", e); } catch (final IllegalArgumentException e) { log.warn("Token is NOT a valid String. Msg: {}", e.getMessage()); - log.debug("TokenValue: {}", externalPendingReqId); + log.info("TokenValue: {}", externalPendingReqId); throw new PendingReqIdValidationException(null, "internal.pendingreqid.05", e); } -- cgit v1.2.3