From 54b70d94946cd760cfe13f7067a0c85036cb42ae Mon Sep 17 00:00:00 2001 From: Urban Modig Date: Wed, 8 Oct 2025 17:31:57 +0200 Subject: [PATCH] Minor change to trigger pipeline --- src/main/java/se/urmo/hemhub/notify/LogNotificationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/se/urmo/hemhub/notify/LogNotificationService.java b/src/main/java/se/urmo/hemhub/notify/LogNotificationService.java index 0a8d3b4..078f46f 100644 --- a/src/main/java/se/urmo/hemhub/notify/LogNotificationService.java +++ b/src/main/java/se/urmo/hemhub/notify/LogNotificationService.java @@ -26,6 +26,6 @@ public class LogNotificationService implements NotificationService { t.getProject() != null ? t.getProject().getId() : "—", t.getAssigneeSub() != null ? t.getAssigneeSub() : "—")) .collect(Collectors.joining("; ")); - log.info("[reminder] Tasks due tomorrow: {}", summary); + log.info("[reminder] Tasks due tomorrow: {} !", summary); } }