Small Notification Job update

This update adds the NotificationId to the log to help track down any errors.
This commit is contained in:
Leigh Pointer 2024-07-25 13:11:05 +02:00
parent 19985d1742
commit d090f446c9

View File

@ -149,7 +149,7 @@ namespace Oqtane.Infrastructure
catch (Exception ex)
{
// error
log += ex.Message + "<br />";
log += $"NotificationId: {notification.NotificationId} - {ex.Message}<br />";
}
}
}