StreamLink.NET
8.0.3-8.0.3-1239-180a512
|
Enumeration that represents the available logging levels. More...
Public Member Functions | |
override string | ToString () |
Static Public Member Functions | |
static LogLevel[] | Values () |
Static Public Attributes | |
static LogLevel | CONFIG = new LogLevel("CONFIG", "CONFIG", 1) |
Used for messages about StreamLink's configuration. More... | |
static LogLevel | CRITICAL = new LogLevel("CRITICAL", "CRITICAL", 2) |
Used for messages indicating a serious failure. More... | |
static LogLevel | ERROR = new LogLevel("ERROR", "ERROR ", 3) |
Used for messages which indicate a problem. More... | |
static LogLevel | FINE = new LogLevel("FINE", "FINE ", 7) |
Used for tracing messages. More... | |
static LogLevel | FINER = new LogLevel("FINER", "FINER ", 8) |
Used for fairly detailed tracing messages. More... | |
static LogLevel | FINEST = new LogLevel("FINEST", "FINEST", 9) |
Used for the most finely detailed tracing messages. More... | |
static LogLevel | INFO = new LogLevel("INFO", "INFO ", 6) |
Used for information messages. More... | |
static LogLevel | NOTIFY = new LogLevel("NOTIFY", "NOTIFY", 5) |
Used for messages of more importance than INFO but may not indicate problems. More... | |
static LogLevel | WARN = new LogLevel("WARN", "WARN ", 4) |
Used for messages which indicate a potential problem. More... | |
Properties | |
virtual string | PaddedName [get] |
virtual int | Value [get] |
Enumeration that represents the available logging levels.
Each log message generated by StreamLink has an associated LogLevel that indicates its importance, in the following order (highest to lowest).
Config | (highest importance) |
Critical | |
Error | |
Warning | |
Notify | |
Info | |
Fine | |
Finer | |
Finest | (lowest importance) |
Used for messages about StreamLink's configuration.
Used for messages indicating a serious failure.
Used for messages which indicate a problem.
Used for tracing messages.
Used for fairly detailed tracing messages.
Used for the most finely detailed tracing messages.
Used for information messages.
Used for messages of more importance than INFO but may not indicate problems.