forked from sim0n00ps/OF-DL
14 lines
252 B
C#
14 lines
252 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();
|
|
}
|