Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LogLevel.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 472bd5aa59ea43b05115c98877e41dcaf5a914c4 (plain)
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
49
50
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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,
    }
}