Files
Wino-Mail/Wino.Core.Domain/Interfaces/ILogInitializer.cs

10 lines
181 B
C#
Raw Normal View History

namespace Wino.Core.Domain.Interfaces
2024-04-18 01:44:37 +02:00
{
public interface ILogInitializer
{
void SetupLogger(string fullLogFilePath);
2024-04-18 01:44:37 +02:00
void RefreshLoggingLevel();
}
2024-04-18 01:44:37 +02:00
}