Files
Umbraco-CMS/src/Umbraco.Core/Logging/LogLevel.cs

16 lines
255 B
C#
Raw Normal View History

2018-08-30 19:08:55 +02:00
namespace Umbraco.Core.Logging
{
/// <summary>
/// Specifies the level of a log event.
/// </summary>
public enum LogLevel
{
Verbose,
Debug,
Information,
Warning,
Error,
Fatal
}
}