Skip to content

Commit

Permalink
Fix log error message
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
palina-krukovich and coderabbitai[bot] authored Oct 23, 2024
1 parent 8830add commit 29ea23e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void run() {
urbanPopulationProperties = obtainUrbanPopulation(geometry);
analytics = obtainAnalytics(geometry);
} catch (ExecutionException | InterruptedException e) {
LOG.error("Failed to obtain analytics for slack notification. Event ID = '{}', name = '{}'. {}", event.getEventId(), event.getName(), e.getMessage(), e);
LOG.error("Failed to obtain analytics for notification. Event ID = '{}', name = '{}'. {}", event.getEventId(), event.getName(), e.getMessage(), e);
}
notificationService.process(event, urbanPopulationProperties, analytics);
latestUpdatedDate = event.getUpdatedAt();
Expand Down

0 comments on commit 29ea23e

Please sign in to comment.