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

@@ -650,26 +650,4 @@ namespace SabreTools.Core
}
#endregion
#region Logging
/// <summary>
/// Severity of the logging statement
/// </summary>
public enum LogLevel
{
[Mapping("verbose")]
VERBOSE = 0,
[Mapping("user")]
USER,
[Mapping("warning")]
WARNING,
[Mapping("error")]
ERROR,
}
#endregion
}

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,
}
}

View File

@@ -1,6 +1,7 @@
using SabreTools.Core;
using SabreTools.Core.Tools;
using SabreTools.DatFiles;
using SabreTools.Logging;
using Xunit;
namespace SabreTools.Test.Core