-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathEventType.cs
More file actions
48 lines (41 loc) · 1.12 KB
/
EventType.cs
File metadata and controls
48 lines (41 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
namespace Waher.Events
{
/// <summary>
/// Type of event.
/// </summary>
public enum EventType
{
/// <summary>
/// Developers can ask applications to send debug messages during development or testing to more easily see what happens in a system.
/// </summary>
Debug,
/// <summary>
/// An informational message describing a normal event.
/// </summary>
Informational,
/// <summary>
/// Represents a significant condition or change that administrators should be aware of.
/// </summary>
Notice,
/// <summary>
/// A warning condition. If not taken into account, the condition could turn into an error.
/// </summary>
Warning,
/// <summary>
/// An error condition. A condition has been detected that is considered to be an error or a fault.
/// </summary>
Error,
/// <summary>
/// A critical condition. An error so great that it could escalate into something graver if not addressed.
/// </summary>
Critical,
/// <summary>
/// An alert condition. Action must be taken immediately.
/// </summary>
Alert,
/// <summary>
/// System is unusable.
/// </summary>
Emergency
}
}