using System.Diagnostics.CodeAnalysis; using Serilog; namespace HrynCo.NotificationService.Services.Logging; [SuppressMessage("Major Code Smell", "S2326:Unused type parameters should be removed", Justification = "Generic parameter used in implementation via ForContext.")] public interface IContextualSerilogLogger { ILogger Logger { get; } }