Files
SabreTools/SabreTools.Logging/Enums.cs
2020-12-07 14:29:45 -08:00

14 lines
219 B
C#

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