From dc0bdfa28becd53eb9fbb29d2e3615e2214e9ec5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 19 Mar 2019 23:45:09 -0400 Subject: [PATCH] fix logger ref --- .../Implementations/MultiServicePushNotificationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/Services/Implementations/MultiServicePushNotificationService.cs b/src/Core/Services/Implementations/MultiServicePushNotificationService.cs index 73e9c4f62c..13faf7b4ed 100644 --- a/src/Core/Services/Implementations/MultiServicePushNotificationService.cs +++ b/src/Core/Services/Implementations/MultiServicePushNotificationService.cs @@ -32,14 +32,14 @@ namespace Bit.Core.Services globalSettings.Installation?.Id != null && CoreHelpers.SettingHasValue(globalSettings.Installation?.Key)) { - _logger.LogInformation(Constants.BypassFiltersEventId, "Use RelayPushNotificationService"); + logger.LogInformation(Constants.BypassFiltersEventId, "Use RelayPushNotificationService"); _services.Add(new RelayPushNotificationService(_deviceRepository, globalSettings, httpContextAccessor, relayLogger)); } if(CoreHelpers.SettingHasValue(globalSettings.InternalIdentityKey) && CoreHelpers.SettingHasValue(globalSettings.BaseServiceUri.InternalNotifications)) { - _logger.LogInformation(Constants.BypassFiltersEventId, + logger.LogInformation(Constants.BypassFiltersEventId, "Use NotificationsApiPushNotificationService"); _services.Add(new NotificationsApiPushNotificationService( globalSettings, httpContextAccessor, hubLogger));