public class Slf4jLogger extends Object implements IgniteLogger
Here is an example of configuring SLF4J logger in Ignite configuration Spring file:
<property name="gridLogger">
<bean class="org.apache.ignite.logger.slf4j.Slf4jLogger"/>
</property>
It's recommended to use Ignite's logger injection instead of using/instantiating
logger in your task/job code. See LoggerResource annotation about logger
injection.
DEV_ONLY| Constructor and Description |
|---|
Slf4jLogger()
Creates new logger.
|
Slf4jLogger(org.slf4j.Logger impl)
Creates new logger with given implementation.
|
| Modifier and Type | Method and Description |
|---|---|
void |
debug(String msg)
Logs out debug message.
|
void |
debug(@Nullable String marker,
String msg)
Logs out debug message.
|
void |
error(@Nullable String marker,
String msg,
@Nullable Throwable e)
Logs error message with optional exception.
|
void |
error(String msg,
@Nullable Throwable e)
Logs error message with optional exception.
|
@Nullable String |
fileName()
Gets name of the file being logged to if one is configured or
null otherwise. |
Slf4jLogger |
getLogger(Object ctgr)
Creates new logger with given category based off the current instance.
|
void |
info(String msg)
Logs out information message.
|
void |
info(@Nullable String marker,
String msg)
Logs out information message.
|
boolean |
isDebugEnabled()
Tests whether
debug level is enabled. |
boolean |
isInfoEnabled()
Tests whether
info level is enabled. |
boolean |
isQuiet()
Tests whether Logger is in "Quiet mode".
|
boolean |
isTraceEnabled()
Tests whether
trace level is enabled. |
String |
toString() |
void |
trace(String msg)
Logs out trace message.
|
void |
trace(@Nullable String marker,
String msg)
Logs out trace message.
|
void |
warning(@Nullable String marker,
String msg,
@Nullable Throwable e)
Logs out warning message with optional exception.
|
void |
warning(String msg,
@Nullable Throwable e)
Logs out warning message with optional exception.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waiterror, warningpublic Slf4jLogger()
public Slf4jLogger(org.slf4j.Logger impl)
impl - SLF4J implementation to use.public Slf4jLogger getLogger(Object ctgr)
getLogger in interface IgniteLoggerctgr - Category for new logger.public void trace(String msg)
trace in interface IgniteLoggermsg - Trace message.public void trace(@Nullable
@Nullable String marker,
String msg)
this.trace(msg).trace in interface IgniteLoggermarker - Name of the marker to be associated with the message.msg - Trace message.public void debug(String msg)
debug in interface IgniteLoggermsg - Debug message.public void debug(@Nullable
@Nullable String marker,
String msg)
this.debug(msg).debug in interface IgniteLoggermarker - Name of the marker to be associated with the message.msg - Debug message.public void info(String msg)
info in interface IgniteLoggermsg - Information message.public void info(@Nullable
@Nullable String marker,
String msg)
this.info(msg).info in interface IgniteLoggermarker - Name of the marker to be associated with the message.msg - Information message.public void warning(String msg, @Nullable @Nullable Throwable e)
warning in interface IgniteLoggermsg - Warning message.e - Optional exception (can be null).public void warning(@Nullable
@Nullable String marker,
String msg,
@Nullable
@Nullable Throwable e)
this.warning(msg).warning in interface IgniteLoggermarker - Name of the marker to be associated with the message.msg - Warning message.e - Optional exception (can be null).public void error(String msg, @Nullable @Nullable Throwable e)
error in interface IgniteLoggermsg - Error message.e - Optional exception (can be null).public void error(@Nullable
@Nullable String marker,
String msg,
@Nullable
@Nullable Throwable e)
this.error(msg).error in interface IgniteLoggermarker - Name of the marker to be associated with the message.msg - Error message.e - Optional exception (can be null).public boolean isTraceEnabled()
trace level is enabled.isTraceEnabled in interface IgniteLoggertrue in case when trace level is enabled, false otherwise.public boolean isInfoEnabled()
info level is enabled.isInfoEnabled in interface IgniteLoggertrue in case when info level is enabled, false otherwise.public boolean isDebugEnabled()
debug level is enabled.isDebugEnabled in interface IgniteLoggertrue in case when debug level is enabled, false otherwise.public boolean isQuiet()
isQuiet in interface IgniteLoggertrue "Quiet mode" is enabled, false otherwise@Nullable public @Nullable String fileName()
null otherwise.fileName in interface IgniteLoggernull otherwise.
GridGain In-Memory Computing Platform : ver. 8.9.26 Release Date : October 16 2025