forked from sim0n00ps/OF-DL
13 lines
276 B
C#
13 lines
276 B
C#
using OF_DL.Enumerations;
|
|
using Serilog.Core;
|
|
|
|
namespace OF_DL.Services
|
|
{
|
|
public interface ILoggingService
|
|
{
|
|
LoggingLevelSwitch LevelSwitch { get; }
|
|
void UpdateLoggingLevel(LoggingLevel newLevel);
|
|
LoggingLevel GetCurrentLoggingLevel();
|
|
}
|
|
}
|