| OFF {logger} | R Documentation |
Log levels
Description
The standard Apache logj4 log levels plus a custom level for SUCCESS. For the full list of these log levels and suggested usage, check the below Details.
Usage
TRACE
DEBUG
INFO
SUCCESS
WARN
ERROR
FATAL
OFF
Format
An object of class loglevel (inherits from integer) of length 1.
Details
List of supported log levels:
-
OFFNo events will be logged -
FATALSevere error that will prevent the application from continuing -
ERRORAn error in the application, possibly recoverable -
WARNAn event that might possible lead to an error -
SUCCESSAn explicit success event above the INFO level that you want to log -
INFOAn event for informational purposes -
DEBUGA general debugging event -
TRACEA fine-grained debug message, typically capturing the flow through the application.
References
https://logging.apache.org/log4j/2.x/javadoc/log4j-api/org/apache/logging/log4j/Level.html, https://logging.apache.org/log4j/2.x/manual/customloglevels.html