Page: Program_Root/LoggerLevel.php
Classes defined on this page:
- LoggerLevel
- Encapsulate Level mechanics
|
Include Statements Summary
|
| INCLUDE TYPE | INCLUDED FILENAME | DESCRIPTION |
| VARIABLE NAME | VARIABLE VALUE | DESCRIPTION |
| CONSTANT NAME | CONSTANT VALUE | DESCRIPTION |
| LOGGER_LEVEL_ALL |
0 |
The ALL has the lowest possible rank and is intended to turn on all logging |
| LOGGER_LEVEL_DEBUG |
10 |
The DEBUG Level designates fine-grained informational events that are most useful to debug an application. |
| LOGGER_LEVEL_ERROR |
40 |
The ERROR level designates error events that might still allow the application to continue running. |
| LOGGER_LEVEL_FATAL |
50 |
The FATAL level designates very severe error events that will presumably lead the application to abort. |
| LOGGER_LEVEL_INFO |
20 |
The INFO level designates informational messages that highlight the progress of the application at coarse-grained level. |
| LOGGER_LEVEL_OFF |
256 |
The OFF has the highest possible rank and is intended to turn off logging. |
| LOGGER_LEVEL_WARN |
30 |
The WARN level designates potentially harmful situations. |
|
Include Statements Detail
|
LOGGER_LEVEL_ALL
(line 18)
LOGGER_LEVEL_ALL = ->0<-
The ALL has the lowest possible rank and is intended to turn on all logging
LOGGER_LEVEL_DEBUG
(line 23)
LOGGER_LEVEL_DEBUG = ->10<-
The DEBUG Level designates fine-grained informational events that are most useful to debug an application.
LOGGER_LEVEL_ERROR
(line 38)
LOGGER_LEVEL_ERROR = ->40<-
The ERROR level designates error events that might still allow the application to continue running.
LOGGER_LEVEL_FATAL
(line 43)
LOGGER_LEVEL_FATAL = ->50<-
The FATAL level designates very severe error events that will presumably lead the application to abort.
LOGGER_LEVEL_INFO
(line 28)
LOGGER_LEVEL_INFO = ->20<-
The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
LOGGER_LEVEL_OFF
(line 48)
LOGGER_LEVEL_OFF = ->256<-
The OFF has the highest possible rank and is intended to turn off logging.
LOGGER_LEVEL_WARN
(line 33)
LOGGER_LEVEL_WARN = ->30<-
The WARN level designates potentially harmful situations.