From 5de4efb7b371649f233e6c2c0ea634805b93ba6e Mon Sep 17 00:00:00 2001 From: Sergey Matvienko Date: Thu, 17 Apr 2025 14:03:53 +0200 Subject: [PATCH] DefaultNotificationCenter log level debug --- .../service/notification/DefaultNotificationCenter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/src/main/java/org/thingsboard/server/service/notification/DefaultNotificationCenter.java b/application/src/main/java/org/thingsboard/server/service/notification/DefaultNotificationCenter.java index 1b410e2607..48f2fdc620 100644 --- a/application/src/main/java/org/thingsboard/server/service/notification/DefaultNotificationCenter.java +++ b/application/src/main/java/org/thingsboard/server/service/notification/DefaultNotificationCenter.java @@ -259,9 +259,9 @@ public class DefaultNotificationCenter extends AbstractSubscriptionService imple int sent = stats.getTotalSent().get(); int errors = stats.getTotalErrors().get(); if (errors > 0) { - log.info("[{}][{}] Notification request processing finished in {} ms (sent: {}, errors: {})", ctx.getTenantId(), requestId, time, sent, errors); + log.debug("[{}][{}] Notification request processing finished in {} ms (sent: {}, errors: {})", ctx.getTenantId(), requestId, time, sent, errors); } else { - log.info("[{}][{}] Notification request processing finished in {} ms (sent: {})", ctx.getTenantId(), requestId, time, sent); + log.debug("[{}][{}] Notification request processing finished in {} ms (sent: {})", ctx.getTenantId(), requestId, time, sent); } updateRequestStats(ctx, requestId, stats); if (callback != null) {