Extract out Logging namespace

This commit is contained in:
Matt Nadareski
2020-12-07 14:29:45 -08:00
parent 6423e46b53
commit ee3e4645a0
32 changed files with 157 additions and 55 deletions

View File

@@ -0,0 +1,13 @@
namespace SabreTools.Logging
{
/// <summary>
/// Severity of the logging statement
/// </summary>
public enum LogLevel
{
VERBOSE = 0,
USER,
WARNING,
ERROR,
}
}