10 lines
174 B
C#
10 lines
174 B
C#
namespace Wino.Domain.Interfaces
|
|
{
|
|
public interface ILogInitializer
|
|
{
|
|
void SetupLogger(string logFolderPath);
|
|
|
|
void RefreshLoggingLevel();
|
|
}
|
|
}
|