-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathELogSeverity.cs
More file actions
46 lines (38 loc) · 923 Bytes
/
ELogSeverity.cs
File metadata and controls
46 lines (38 loc) · 923 Bytes
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
namespace WebViewControl {
public enum ELogSeverity {
/// <summary>
/// Default logging (currently INFO logging).
/// </summary>
Default,
/// <summary>
/// Verbose logging.
/// </summary>
Verbose,
/// <summary>
/// DEBUG logging.
/// </summary>
Debug = Verbose,
/// <summary>
/// INFO logging.
/// </summary>
Info,
/// <summary>
/// WARNING logging.
/// </summary>
Warning,
/// <summary>
/// ERROR logging.
/// </summary>
Error,
/// <summary>
/// FATAL logging.
/// </summary>
Fatal,
/// <summary>
/// Disable logging to file for all messages, and to stderr for messages with
/// severity less than FATAL.
/// </summary>
Disable = 99,
}
}