I don't see a public way to clear the log dictionary. I also don't have access to do a pull request. Can this be added?
/// <summary>
/// Public method to clear logsDictionary and reinitialize
/// </summary>
public static void ClearLogs()
{
logsDictionary.Clear();
foreach (var level in ((LogLevel[])Enum.GetValues(typeof(LogLevel))).Where(x => x != LogLevel.None))
{
logsDictionary.Add(level, new LogForLevel(MaxLogCount));
}
}
I don't see a public way to clear the log dictionary. I also don't have access to do a pull request. Can this be added?