Module: LogKernel::Level

Included in:
Event, Logger
Defined in:
lib/logutils/logger.rb

Overview

todo: reverse level integers ??? why? why not?? more logical no output = 0 (off)

everything    = 6 (all)
debug         = 5 etc.

Constant Summary collapse

ALL =
0
DEBUG =
1
INFO =
2
WARN =
3
ERROR =
4
FATAL =
5
UNKNOWN =

make unknown higher than off? why? why not?

6
OFF =
7