summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas <>2023-02-06 15:03:34 +0100
committerThomas <>2023-02-06 15:03:34 +0100
commitb1c89dad26ec39270de561657f1200980ec301da (patch)
tree16f4dfa2ce999f1882520a73d51a1297d08283d3
parent231d4f4fa341a69288acb7c4c2987bc07385d7a5 (diff)
downloadEAAF-Components-b1c89dad26ec39270de561657f1200980ec301da.tar.gz
EAAF-Components-b1c89dad26ec39270de561657f1200980ec301da.tar.bz2
EAAF-Components-b1c89dad26ec39270de561657f1200980ec301da.zip
fix(core): add missing parameter to log message
-rw-r--r--eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/ProtocolFinalizationController.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/ProtocolFinalizationController.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/ProtocolFinalizationController.java
index a22cbe9d..a0ac57d1 100644
--- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/ProtocolFinalizationController.java
+++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/ProtocolFinalizationController.java
@@ -114,7 +114,8 @@ public class ProtocolFinalizationController extends AbstractController {
} else {
log.info("Find no exception with internal error-token: {}", errorId);
protAuthService
- .handleErrorNoRedirect(new EaafException(IStatusMessenger.CODES_INTERNAL_ERROR_AUTH_TIMEOUT, null),
+ .handleErrorNoRedirect(
+ new EaafException(IStatusMessenger.CODES_INTERNAL_ERROR_AUTH_TIMEOUT, new Object[]{errorId}),
req, resp, false);
}
@@ -256,7 +257,7 @@ public class ProtocolFinalizationController extends AbstractController {
log.info("PendingReqId was valid but no PendingRequest with ID: {}. Looks already used",
pendingRequestID);
protAuthService.handleErrorNoRedirect(
- new EaafException(IStatusMessenger.CODES_INTERNAL_ERROR_AUTH_TIMEOUT, new Object[]{pendingRequestID,}), req,
+ new EaafException(IStatusMessenger.CODES_INTERNAL_ERROR_AUTH_TIMEOUT, new Object[]{pendingRequestID}), req,
resp, false);
} else {