Skip to content

Commit

Permalink
ES-709
Browse files Browse the repository at this point in the history
Signed-off-by: pr <[email protected]>
  • Loading branch information
panharith-0118 committed Jan 25, 2024
1 parent ddf935b commit a75ae30
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ public void sendAuditTransaction(AuditEvent auditEvent, AuditEventType eventType
ExceptionUtils.getStackTrace(signUpException) : null;
if (description != null && description.length() > auditDescriptionMaxLength) {
description = description.substring(0, auditDescriptionMaxLength);
}else if (description == null){
description = auditEvent.toString() + " " + eventType.toString();
}
AuditRequest auditRequest = new AuditRequest(auditEvent, eventType, applicationName, "no-user",
transactionId, "EsignetSignUpService", description);
Expand Down

0 comments on commit a75ae30

Please sign in to comment.