Add LogLevel Blacklist
This commit is contained in:
parent
f0e3ccc41b
commit
24dc68b308
2 changed files with 20 additions and 6 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue