Class: UU::AppLog::ApplicationLog::Severity

Inherits:
Object
  • Object
show all
Defined in:
uu_applog-0.27.16/lib/uu/applog/application_log/severity.rb

Overview

Severity of application log records.

Constant Summary

ERROR =

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

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

'ERROR'
WARNING =

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

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

'WARNING'
INFO =

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

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

'INFO'
DEBUG =

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

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

'DEBUG'