2019-07-18 04:08:24 +02:00
|
|
|
using System;
|
|
|
|
|
2020-05-09 20:45:43 +02:00
|
|
|
namespace GodotTools.IdeMessaging
|
2019-07-18 04:08:24 +02: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);
|
|
|
|
}
|
|
|
|
}
|