Class Reporter
 Internal reporting is performed by calling the debug(String), info(String),
 warn(String) (String)} error(String) (String)}  and
 error(String, Throwable) methods.
 
See SLF4J_INTERNAL_VERBOSITY_KEY and SLF4J_INTERNAL_REPORT_STREAM_KEY for
 configuration options.
Note that this system is independent of the logging back-end in use.
- Since:
- 2.0.10
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic voidReport an internal message of level DEBUG.static final voidReport an internal message of level "ERROR".static final voidReport an internal message of level "ERROR accompanied by aThrowable.static voidReport an internal message of level INFO.static final voidReport an internal message of level "WARN".
- 
Field Details- 
SLF4J_INTERNAL_REPORT_STREAM_KEYThis system property controls the target for internal reports output by SLF4J. Recognized values for this key are "System.out", "stdout", "sysout", "System.err", "stderr" and "syserr".By default, output is directed to "stderr". - See Also:
 
- 
SLF4J_INTERNAL_VERBOSITY_KEYThis system property controls the internal level of chattiness of SLF4J. Recognized settings are "INFO", "WARN" and "ERROR". The default value is "INFO".- See Also:
 
 
- 
- 
Constructor Details- 
Reporterpublic Reporter()
 
- 
- 
Method Details- 
debugReport an internal message of level DEBUG. Message text is prefixed with the string "SLF4J(D)", with (D) standing as a shorthand for DEBUG.Messages of level DEBUG are be enabled when the SLF4J_INTERNAL_VERBOSITY_KEYsystem property is set to "DEBUG" and disabled when set to "INFO", "WARN" or "ERROR". By default,SLF4J_INTERNAL_VERBOSITY_KEYis set to "INFO".- Parameters:
- msg- the message text
- Since:
- 2.0.16
 
- 
infoReport an internal message of level INFO. Message text is prefixed with the string "SLF4J(I)", with (I) standing as a shorthand for INFO.Messages of level INFO are be enabled when the SLF4J_INTERNAL_VERBOSITY_KEYsystem property is set to "DEBUG" or "INFO" and disabled when set to "WARN" or "ERROR". By default,SLF4J_INTERNAL_VERBOSITY_KEYis set to "INFO".- Parameters:
- msg- the message text
 
- 
warnReport an internal message of level "WARN". Message text is prefixed with the string "SLF4J(W)", with (W) standing as a shorthand for WARN.Messages of level WARN are be enabled when the SLF4J_INTERNAL_VERBOSITY_KEYsystem property is set to "DEBUG", "INFO" or "WARN" and disabled when set to "ERROR". By default,SLF4J_INTERNAL_VERBOSITY_KEYis set to "INFO".- Parameters:
- msg- the message text
 
- 
errorReport an internal message of level "ERROR accompanied by aThrowable. Message text is prefixed with the string "SLF4J(E)", with (E) standing as a shorthand for ERROR.Messages of level ERROR are always enabled. - Parameters:
- msg- the message text
- t- a Throwable
 
- 
error
 
-