11 lines
249 B
C#
11 lines
249 B
C#
namespace Dashboard.Pal
|
|
{
|
|
public interface IContextDebugger : IDisposable
|
|
{
|
|
void LogDebug(string message);
|
|
void LogInfo(string message);
|
|
void LogWarning(string message);
|
|
void LogError(string message);
|
|
}
|
|
}
|