godot-module-template/engine/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/ILogger.cs

14 lines
303 B
C#
Raw Normal View History

2025-01-17 15:36:38 +00:00
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);
}
}