Class: Verbosity

Inherits:
Object show all
Defined in:
lib/ceedling/constants.rb

Overview

Logging verbosity levels

Constant Summary collapse

SILENT =

As silent as possible (though there are some messages that must be spit out)

0
ERRORS =

Only errors

1
COMPLAIN =

Spit out errors and warnings/notices

2
NORMAL =

Errors, warnings/notices, standard status messages

3
OBNOXIOUS =

All messages including extra verbose output (used for lite debugging / verification)

4
DEBUG =

Special extra verbose output for hardcore debugging

5