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