Add LogLevel Blacklist

This commit is contained in:
Mira 2022-06-06 04:35:42 +02:00
parent f0e3ccc41b
commit 24dc68b308
Signed by untrusted user who does not match committer: Xorog
GPG key ID: 983798ED9C3E7C36
2 changed files with 20 additions and 6 deletions

View file

@ -4,6 +4,7 @@ public class LoggerObjects
{
internal List<LogEntry> LogsToPost = new();
internal List<string> Blacklist = new();
internal List<LogLevel> FileBlackList = new();
public class LogEntry
{
@ -22,6 +23,7 @@ public class LoggerObjects
INFO,
DEBUG,
DEBUG2,
TRACE
TRACE,
TRACE2
}
}