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