Move flags, logging

This commit is contained in:
Matt Nadareski
2020-08-01 22:10:29 -07:00
parent 3027fb732a
commit a84314684f
28 changed files with 316 additions and 306 deletions

View File

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