[Logger] Allow for log filtering based on level

This commit is contained in:
Matt Nadareski
2017-03-01 21:58:09 -08:00
parent 1eff6ce217
commit 4ab5f4578f
3 changed files with 29 additions and 15 deletions

View File

@@ -304,6 +304,21 @@
#endregion
#region Logging related
/// <summary>
/// Severity of the logging statement
/// </summary>
public enum LogLevel
{
VERBOSE = 0,
USER,
WARNING,
ERROR,
}
#endregion
#region Skippers and Mappers
/// <summary>