Skip to content

Commit

Permalink
logger message fix to include the full exception message (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
ole4ryb authored Nov 11, 2024
1 parent fc442fa commit 1468bc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public boolean prepareAndSendAcknowledgementMessage(AcknowledgeRecordMessage ack
try {
message = parseOriginalMessage(acknowledgeRecordMessage);
} catch (Exception exception) {
LOGGER.error("Original message was not parsed due to an exception.", exception.getMessage());
LOGGER.error("Original message was not parsed due to an exception: {}", exception.getMessage());
return false;
}

Expand Down

0 comments on commit 1468bc6

Please sign in to comment.