Class: UU::OS::Logger::LogLevel

Inherits:
Object
  • Object
show all
Defined in:
uu_os_framework-0.29.16/lib/uu/os/logger/log_level.rb

Overview

Enumeration of available logger levels.

Constant Summary

ERROR =

The ERROR level designates error events which prevent normal program execution.

This level is typically configured in production environment. Abusing this level for debug messages is considered a bad practice and shall be avoided.

'ERROR'
WARNING =

The WARN level designates potentially harmful situations. Nevertheless these situations still allow the application to continue running.

This level may be configured in production environment only for a reasonably short time (i.e. to track down a bug).

'WARNING'
INFO =

The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.

This level should not be configured in production environment, only in testing and development environments.

'INFO'
DEBUG =

The DEBUG Level designates fine-grained informational events that are most useful to debug an application.

This level should not be configured in production environment, only in testing and development environments.

'DEBUG'