Move Logging enums back to proper project

This commit is contained in:
Matt Nadareski
2024-03-12 23:54:47 -04:00
parent c353d4e7de
commit 375d201ad0
3 changed files with 23 additions and 22 deletions

View File

@@ -0,0 +1,22 @@
using SabreTools.Core;
namespace SabreTools.Logging
{
/// <summary>
/// Severity of the logging statement
/// </summary>
public enum LogLevel
{
[Mapping("verbose")]
VERBOSE = 0,
[Mapping("user")]
USER,
[Mapping("warning")]
WARNING,
[Mapping("error")]
ERROR,
}
}