blob: 614bb3027158184152cf6a5698ae1de2434785e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace GodotTools.IdeConnection
{
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);
}
}
|