Files
Matt Nadareski 9d04185b21 Use explicit enum values matching automatic values
This is being done to avoid any API-breaking changes in the future. If the values are set explicitly, added values either need to force a major version update or get added as the next-highest values.
2026-07-10 09:58:04 -04:00

14 lines
231 B
C#

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