Skip to content

Commit

Permalink
review: adjusted/fixed log templates
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Jaeckle <thomas.jaeckle@bosch.io>
  • Loading branch information
thjaeckle committed Feb 8, 2022
1 parent abc6509 commit b5f36b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ boolean isExpired() {
} catch (final Exception e) {
// Errors during reading/parsing headers should not cause the message to be dropped.
final Object message = null != externalMessage ? externalMessage : dittoRuntimeException;
LOGGER.warn("Encountered error checking the expiry of Kafka message: <{}>, <{}>", message, e);
LOGGER.warn("Encountered error checking the expiry of Kafka message: <{}>, <{}>: {}", message,
e.getClass().getSimpleName(), e.getMessage(), e);
return false;
}
}
Expand Down

0 comments on commit b5f36b7

Please sign in to comment.