Newer
Older
TestingWithoutInterfaces / src / ApplicationCore / Interfaces / IAppLogger.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 372 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);
}