mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
14 lines
304 B
C#
14 lines
304 B
C#
|
|
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);
|
||
|
|
}
|
||
|
|
}
|