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

6 lines
153 B
C#
Raw Normal View History

2025-01-05 17:05:23 +03:00
namespace Nebula.Shared.Services.Logging;
2024-12-22 16:38:47 +03:00
public interface ILogger : IDisposable
2024-12-22 16:38:47 +03:00
{
public void Log(LoggerCategory loggerCategory, string message);
}