9 lines
159 B
C#
9 lines
159 B
C#
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
public interface ILogInitializer
|
|
{
|
|
void SetupLogger(string fullLogFilePath);
|
|
|
|
void RefreshLoggingLevel();
|
|
}
|