Skip to content

Commit

Permalink
Add missing param in log entry (RedHatInsights#2931)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenneg authored Sep 10, 2024
1 parent f667e70 commit af4246d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void process(final Event event, final List<Endpoint> endpoints, final boo
// Fetch the template that will be used to hydrate it with the data.
final Optional<InstantEmailTemplate> instantEmailTemplateMaybe = this.templateRepository.findInstantEmailTemplate(event.getEventType().getId());
if (instantEmailTemplateMaybe.isEmpty()) {
Log.infof("[event_uuid: %s] The event was skipped because there were no suitable templates for its event type %s", event.getEventType().getName());
Log.infof("[event_uuid: %s] The event was skipped because there were no suitable templates for its event type %s", event.getId(), event.getEventType().getName());
return;
}

Expand Down

0 comments on commit af4246d

Please sign in to comment.