public abstract class MarkerIgnoringBase extends Object implements Logger
Modifier and Type | Field and Description |
---|---|
protected String |
name |
ROOT_LOGGER_NAME
Constructor and Description |
---|
MarkerIgnoringBase() |
Modifier and Type | Method and Description |
---|---|
void |
debug(Marker marker,
String msg)
Log a message with the specific Marker at the DEBUG level.
|
void |
debug(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.debug(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
debug(Marker marker,
String format,
Object arg)
This method is similar to
Logger.debug(String, Object) method except that the
marker data is also taken into consideration. |
void |
debug(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.debug(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
debug(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.debug(String, Throwable) method except that the
marker data is also taken into consideration. |
void |
error(Marker marker,
String msg)
Log a message with the specific Marker at the ERROR level.
|
void |
error(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.error(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
error(Marker marker,
String format,
Object arg)
This method is similar to
Logger.error(String, Object) method except that the
marker data is also taken into consideration. |
void |
error(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.error(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
error(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.error(String, Throwable)
method except that the marker data is also taken into
consideration. |
String |
getName()
Return the name of this
Logger instance. |
void |
info(Marker marker,
String msg)
Log a message with the specific Marker at the INFO level.
|
void |
info(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.info(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
info(Marker marker,
String format,
Object arg)
This method is similar to
Logger.info(String, Object) method except that the
marker data is also taken into consideration. |
void |
info(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.info(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
info(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.info(String, Throwable) method
except that the marker data is also taken into consideration. |
boolean |
isDebugEnabled(Marker marker)
Similar to
Logger.isDebugEnabled() method except that the
marker data is also taken into account. |
boolean |
isErrorEnabled(Marker marker)
Similar to
Logger.isErrorEnabled() method except that the
marker data is also taken into consideration. |
boolean |
isInfoEnabled(Marker marker)
Similar to
Logger.isInfoEnabled() method except that the marker
data is also taken into consideration. |
boolean |
isTraceEnabled(Marker marker)
Similar to
Logger.isTraceEnabled() method except that the
marker data is also taken into account. |
boolean |
isWarnEnabled(Marker marker)
Similar to
Logger.isWarnEnabled() method except that the marker
data is also taken into consideration. |
protected Object |
readResolve()
Replace this instance with a homonymous (same name) logger returned
by LoggerFactory.
|
String |
toString()
Returns a string representation of the object.
|
void |
trace(Marker marker,
String msg)
Log a message with the specific Marker at the TRACE level.
|
void |
trace(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.trace(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
trace(Marker marker,
String format,
Object arg)
This method is similar to
Logger.trace(String, Object) method except that the
marker data is also taken into consideration. |
void |
trace(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.trace(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
trace(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.trace(String, Throwable) method except that the
marker data is also taken into consideration. |
void |
warn(Marker marker,
String msg)
Log a message with the specific Marker at the WARN level.
|
void |
warn(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.warn(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
warn(Marker marker,
String format,
Object arg)
This method is similar to
Logger.warn(String, Object) method except that the
marker data is also taken into consideration. |
void |
warn(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.warn(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
warn(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.warn(String, Throwable) method
except that the marker data is also taken into consideration. |
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
debug, debug, debug, debug, debug, error, error, error, error, error, getName, info, info, info, info, info, isDebugEnabled, isErrorEnabled, isInfoEnabled, isTraceEnabled, isWarnEnabled, trace, trace, trace, trace, trace, warn, warn, warn, warn, warn
protected String name
public void debug(Marker marker, String msg)
Logger
public void debug(Marker marker, String format, Object... arguments)
Logger
Logger.debug(String, Object...)
method except that the marker data is also taken into
consideration.public void debug(Marker marker, String format, Object arg)
Logger
Logger.debug(String, Object)
method except that the
marker data is also taken into consideration.public void debug(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.debug(String, Object, Object)
method except that the marker data is also taken into
consideration.public void debug(Marker marker, String msg, Throwable t)
Logger
Logger.debug(String, Throwable)
method except that the
marker data is also taken into consideration.public void error(Marker marker, String msg)
Logger
public void error(Marker marker, String format, Object... arguments)
Logger
Logger.error(String, Object...)
method except that the marker data is also taken into
consideration.public void error(Marker marker, String format, Object arg)
Logger
Logger.error(String, Object)
method except that the
marker data is also taken into consideration.public void error(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.error(String, Object, Object)
method except that the marker data is also taken into
consideration.public void error(Marker marker, String msg, Throwable t)
Logger
Logger.error(String, Throwable)
method except that the marker data is also taken into
consideration.public void info(Marker marker, String msg)
Logger
public void info(Marker marker, String format, Object... arguments)
Logger
Logger.info(String, Object...)
method except that the marker data is also taken into
consideration.public void info(Marker marker, String format, Object arg)
Logger
Logger.info(String, Object)
method except that the
marker data is also taken into consideration.public void info(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.info(String, Object, Object)
method except that the marker data is also taken into
consideration.public void info(Marker marker, String msg, Throwable t)
Logger
Logger.info(String, Throwable)
method
except that the marker data is also taken into consideration.public boolean isDebugEnabled(Marker marker)
Logger
Logger.isDebugEnabled()
method except that the
marker data is also taken into account.isDebugEnabled
in interface Logger
marker
- The marker data to take into considerationpublic boolean isErrorEnabled(Marker marker)
Logger
Logger.isErrorEnabled()
method except that the
marker data is also taken into consideration.isErrorEnabled
in interface Logger
marker
- The marker data to take into considerationpublic boolean isInfoEnabled(Marker marker)
Logger
Logger.isInfoEnabled()
method except that the marker
data is also taken into consideration.isInfoEnabled
in interface Logger
marker
- The marker data to take into considerationpublic boolean isTraceEnabled(Marker marker)
Logger
Logger.isTraceEnabled()
method except that the
marker data is also taken into account.isTraceEnabled
in interface Logger
marker
- The marker data to take into considerationpublic boolean isWarnEnabled(Marker marker)
Logger
Logger.isWarnEnabled()
method except that the marker
data is also taken into consideration.isWarnEnabled
in interface Logger
marker
- The marker data to take into considerationpublic String toString()
Object
toString
method returns a
string that "textually represents" this object. The result should be a concise but informative
representation that is easy for a person to read. It is recommended that all subclasses override
this method.
The toString
method for class Object
returns a string consisting of the name of
the class of which the object is an instance, the at-sign character `@
', and the unsigned
hexadecimal representation of the hash code of the object. In other words, this method returns a
string equal to the value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
public void trace(Marker marker, String msg)
Logger
public void trace(Marker marker, String format, Object... arguments)
Logger
Logger.trace(String, Object...)
method except that the marker data is also taken into
consideration.public void trace(Marker marker, String format, Object arg)
Logger
Logger.trace(String, Object)
method except that the
marker data is also taken into consideration.public void trace(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.trace(String, Object, Object)
method except that the marker data is also taken into
consideration.public void trace(Marker marker, String msg, Throwable t)
Logger
Logger.trace(String, Throwable)
method except that the
marker data is also taken into consideration.public void warn(Marker marker, String msg)
Logger
public void warn(Marker marker, String format, Object... arguments)
Logger
Logger.warn(String, Object...)
method except that the marker data is also taken into
consideration.public void warn(Marker marker, String format, Object arg)
Logger
Logger.warn(String, Object)
method except that the
marker data is also taken into consideration.public void warn(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.warn(String, Object, Object)
method except that the marker data is also taken into
consideration.public void warn(Marker marker, String msg, Throwable t)
Logger
Logger.warn(String, Throwable)
method
except that the marker data is also taken into consideration.public String getName()
Logger
Logger
instance.protected Object readResolve() throws java.io.ObjectStreamException
This approach will work well if the desired ILoggerFactory is the one references by LoggerFactory. However, if the user manages its logger hierarchy through a different (non-static) mechanism, e.g. dependency injection, then this approach would be mostly counterproductive.
java.io.ObjectStreamException