2019-07-18 02:08:24 +00:00
|
|
|
using System;
|
|
|
|
|
2020-05-09 18:45:43 +00:00
|
|
|
namespace GodotTools.IdeMessaging
|
2019-07-18 02:08:24 +00:00
|
|
|
{
|
|
|
|
public interface ILogger
|
|
|
|
{
|
|
|
|
void LogDebug(string message);
|
|
|
|
void LogInfo(string message);
|
|
|
|
void LogWarning(string message);
|
|
|
|
void LogError(string message);
|
|
|
|
void LogError(string message, Exception e);
|
|
|
|
}
|
|
|
|
}
|