2
0
forked from sim0n00ps/OF-DL
OF-DL/OF DL/Services/ILoggingService.cs

12 lines
250 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();
}