~jterrell/nunitv2/nunitv2

« back to all changes in this revision

Viewing changes to src/NUnitCore/interfaces/LoggingThreshold.cs

  • Committer: Charlie Poole
  • Date: 2012-01-11 07:13:32 UTC
  • Revision ID: charlie@nunit.org-20120111071332-lhfqe3lqdxusugum
Eliminate various warning messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
namespace NUnit.Core
8
8
{
9
9
    /// <summary>
10
 
    /// Enumeration expressing the level of text messages to be 
11
 
    /// captured by NUnit and sent to the runner.
 
10
    /// Enumeration expressing the level of log messages to be 
 
11
    /// captured by NUnit and sent to the runner. These happen
 
12
    /// to match the standard levels used by log4net, but will
 
13
    /// be translated for any other loggers we support.
12
14
    /// </summary>
13
15
    public enum LoggingThreshold
14
16
    {
 
17
        /// <summary>No logging</summary>
15
18
        Off = 0,
 
19
        /// <summary>Severe error beyond which continuation is not possible</summary>
16
20
        Fatal = 1,
 
21
        /// <summary>Error that may allow continuation</summary>
17
22
        Error = 2,
 
23
        /// <summary>A warning message</summary>
18
24
        Warn = 3,
 
25
        /// <summary>An informational message</summary>
19
26
        Info = 4,
 
27
        /// <summary>Messages used for debugging</summary>
20
28
        Debug = 5,
 
29
        /// <summary>All of the preceding plus more detailled messages if supported</summary>
21
30
        All = 6,
22
31
    }
23
32
}