Module: Lazylead::Log

Defined in:
lib/lazylead/log.rb

Overview

Loggers.

There are 3 colored loggers so far:

NOTHING - for cases when logging isn't required
VERBOSE - all logging levels including debug
ERRORS - for errors only which are critical for app.

Constant Summary collapse

NOTHING =

Nothing to log

Logging.logger["nothing"]
VERBOSE =

All levels including debug

Logging.logger["verbose"]
ERRORS =

Alerts

Logging.logger["errors"]