mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
14 lines
227 B
C#
14 lines
227 B
C#
|
|
namespace SabreTools.Library.Logging
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Severity of the logging statement
|
|||
|
|
/// </summary>
|
|||
|
|
public enum LogLevel
|
|||
|
|
{
|
|||
|
|
VERBOSE = 0,
|
|||
|
|
USER,
|
|||
|
|
WARNING,
|
|||
|
|
ERROR,
|
|||
|
|
}
|
|||
|
|
}
|