From d090f446c9de35f4a3bff7fa3f45d084290919a9 Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Thu, 25 Jul 2024 13:11:05 +0200 Subject: [PATCH] Small Notification Job update This update adds the NotificationId to the log to help track down any errors. --- Oqtane.Server/Infrastructure/Jobs/NotificationJob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Server/Infrastructure/Jobs/NotificationJob.cs b/Oqtane.Server/Infrastructure/Jobs/NotificationJob.cs index 777bb912..b47c5732 100644 --- a/Oqtane.Server/Infrastructure/Jobs/NotificationJob.cs +++ b/Oqtane.Server/Infrastructure/Jobs/NotificationJob.cs @@ -149,7 +149,7 @@ namespace Oqtane.Infrastructure catch (Exception ex) { // error - log += ex.Message + "
"; + log += $"NotificationId: {notification.NotificationId} - {ex.Message}
"; } } }