namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
///
/// This type eliminates the need to depend directly on the ASP.NET Core logging types.
///
///
public interface IAppLogger
{
void LogInformation(string message, params object[] args);
void LogWarning(string message, params object[] args);
}
}