public void LogConfigurationNotification(Notification notification)
        {
            if (!ShouldLog(notification))
            {
                return;
            }

            ConfigurationNotifications ??= new List <Notification>();
            ConfigurationNotifications.Add(notification);
        }
Esempio n. 2
0
 public void LogConfigurationNotification(Notification notification)
 {
     ConfigurationNotifications ??= new List <Notification>();
     ConfigurationNotifications.Add(notification);
 }