-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogSeverity.cs
20 lines (20 loc) · 1008 Bytes
/
LogSeverity.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace BSS.Logging
{
internal enum LogSeverity
{
///<summary>Logs that contain the most severe level of error. This type of error indicates that immediate attention may be required.</summary>
Critical = 0,
///<summary>Logs that highlight when the flow of execution is stopped due to a failure.</summary>
Error = 1,
///<summary>Logs that highlight an abnormal activity in the flow of execution.</summary>
Warning = 2,
///<summary>Logs that track the general flow of the application.</summary>
Info = 3,
///<summary>Logs that are used for interactive investigation during development.</summary>
Verbose = 4,
///<summary>Logs that contain the most detailed messages.</summary>
Debug = 5,
///<summary>Logs that highlight an abnormal activity in the flow of execution. This type of error indicates that immediate attention may be required.</summary>
Alert = 6,
}
}