From 814ca7b30b34db950e5c3517d7e863e53146311d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 31 Jan 2023 09:59:15 -0500 Subject: [PATCH] Fix HeartbeatHostedService logger (#2650) --- src/Notifications/HeartbeatHostedService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Notifications/HeartbeatHostedService.cs b/src/Notifications/HeartbeatHostedService.cs index 717fdeb784..f635fa5bca 100644 --- a/src/Notifications/HeartbeatHostedService.cs +++ b/src/Notifications/HeartbeatHostedService.cs @@ -13,7 +13,7 @@ public class HeartbeatHostedService : IHostedService, IDisposable private CancellationTokenSource _cts; public HeartbeatHostedService( - ILogger logger, + ILogger logger, IHubContext hubContext, GlobalSettings globalSettings) {