virtualx-engine/modules/mono/editor/GodotTools/GodotTools.IdeConnection/ILogger.cs

14 lines
304 B
C#
Raw Normal View History

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);
}
}