diff options
Diffstat (limited to 'modules/mono/editor/GodotTools/GodotTools.IdeMessaging/ILogger.cs')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools.IdeMessaging/ILogger.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/ILogger.cs b/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/ILogger.cs new file mode 100644 index 0000000000..d2855f93a1 --- /dev/null +++ b/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/ILogger.cs @@ -0,0 +1,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); + } +} |