enum Tabular::Log
#
A logger in which each member represents a logging level. Setting the
$TABULAR_LOG_LEVEL
environment variable from the shell to a file path
directs all logging to that file.
Members#
Fatal = 1
#
A serious error, indicating that the program itself may be unable to continue running.
Error = 2
#
Due to a more serious problem, the software has not been able to perform some function.
Warn = 3
#
An indication that something unexpected happened, or that a problem might occur in the near future.
Info = 4
#
Confirmation that things are working as expected.
Debug = 5
#
Detailed information, typically only of interest to a developer trying to diagnose a problem.