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