|
static LogLevel | CONFIG = new LogLevel("CONFIG", "CONFIG", 1) |
| Used for messages about StreamLink's configuration.
|
|
static LogLevel | CRITICAL = new LogLevel("CRITICAL", "CRITICAL", 2) |
| Used for messages indicating a serious failure.
|
|
static LogLevel | ERROR = new LogLevel("ERROR", "ERROR ", 3) |
| Used for messages which indicate a problem.
|
|
static LogLevel | FINE = new LogLevel("FINE", "FINE ", 7) |
| Used for tracing messages.
|
|
static LogLevel | FINER = new LogLevel("FINER", "FINER ", 8) |
| Used for fairly detailed tracing messages.
|
|
static LogLevel | FINEST = new LogLevel("FINEST", "FINEST", 9) |
| Used for the most finely detailed tracing messages.
|
|
static LogLevel | INFO = new LogLevel("INFO", "INFO ", 6) |
| Used for information messages.
|
|
static LogLevel | NOTIFY = new LogLevel("NOTIFY", "NOTIFY", 5) |
| Used for messages of more importance than INFO but may not indicate problems.
|
|
static LogLevel | WARN = new LogLevel("WARN", "WARN ", 4) |
| Used for messages which indicate a potential problem.
|
|
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)
|