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 6e1925c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void sendAuditTransaction(AuditEvent auditEvent, AuditEventType eventType
restRequestWrapper.setRequesttime(getUTCDateTime());

String description = signUpException != null ?
ExceptionUtils.getStackTrace(signUpException) : null;
ExceptionUtils.getStackTrace(signUpException) : auditEvent.toString() + " " + eventType.toString();
if (description != null && description.length() > auditDescriptionMaxLength) {
description = description.substring(0, auditDescriptionMaxLength);
}
Expand Down

0 comments on commit 6e1925c

Please sign in to comment.