mirror of
https://github.com/Relintai/mono.git
synced 2024-11-08 10:12:16 +01:00
14 lines
303 B
C#
14 lines
303 B
C#
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);
|
|
}
|
|
}
|