Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / ApplicationCore / Interfaces / IAppLogger.cs
@Derek Comartin Derek Comartin on 27 Jul 2021 410 bytes Init
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
    /// <summary>
    /// This type eliminates the need to depend directly on the ASP.NET Core logging types.
    /// </summary>
    /// <typeparam name="T"></typeparam>
    public interface IAppLogger<T>
    {
        void LogInformation(string message, params object[] args);
        void LogWarning(string message, params object[] args);
    }
}