Files
NebulaLauncher/Nebula.Shared/Services/Logging/ILogger.cs

6 lines
153 B
C#

namespace Nebula.Shared.Services.Logging;
public interface ILogger : IDisposable
{
public void Log(LoggerCategory loggerCategory, string message);
}