naps2/NAPS2.Core/Util/ILogger.cs
2018-08-09 01:27:46 -04:00

17 lines
408 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace NAPS2.Util
{
/// <summary>
/// A base interface for logging APIs. Used by the Log class.
/// </summary>
public interface ILogger
{
void Error(string message);
void ErrorException(string message, Exception exception);
void FatalException(string message, Exception exception);
}
}