-
Notifications
You must be signed in to change notification settings - Fork 894
/
Copy pathLogLevel.cs
45 lines (39 loc) · 1.1 KB
/
LogLevel.cs
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
namespace LibGit2Sharp
{
/// <summary>
/// Available logging levels. When logging is enabled at a particular
/// level, callers will be provided logging at the given level and all
/// lower levels.
/// </summary>
public enum LogLevel
{
/// <summary>
/// No logging will be provided.
/// </summary>
None = 0,
/// <summary>
/// Severe errors that may impact the program's execution.
/// </summary>
Fatal = 1,
/// <summary>
/// Errors that do not impact the program's execution.
/// </summary>
Error = 2,
/// <summary>
/// Warnings that suggest abnormal data.
/// </summary>
Warning = 3,
/// <summary>
/// Informational messages about program execution.
/// </summary>
Info = 4,
/// <summary>
/// Detailed data that allows for debugging.
/// </summary>
Debug = 5,
/// <summary>
/// Tracing is exceptionally detailed debugging data.
/// </summary>
Trace = 6,
}
}