16 lines
255 B
C#
16 lines
255 B
C#
namespace Umbraco.Core.Logging
|
|
{
|
|
/// <summary>
|
|
/// Specifies the level of a log event.
|
|
/// </summary>
|
|
public enum LogLevel
|
|
{
|
|
Verbose,
|
|
Debug,
|
|
Information,
|
|
Warning,
|
|
Error,
|
|
Fatal
|
|
}
|
|
}
|