이 콘텐츠는 선택한 언어로 제공되지 않습니다.
2.4. Logging Attributes
2.4.1. About Log Levels 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Log levels are an ordered set of enumerated values that indicate the nature and severity of a log message. The level of a given log message is specified by the developer using the appropriate methods of their chosen logging framework to send the message.
JBoss Data Grid 6 supports all the log levels used by the supported application logging frameworks. The six most commonly used log levels are (ordered by lowest to highest):
TRACE
DEBUG
INFO
WARN
ERROR
FATAL
Log levels are used by log categories and handlers to limit the messages they are responsible for. Each log level has an assigned numeric value which indicates its order relative to other log levels. Log categories and handlers are assigned a log level and they only process log messages of that level or higher. For example a log handler with the level of
WARN
will only record messages of the levels WARN
, ERROR
and FATAL
.