error
Lazy add a log message if isErrorEnabled is true
Lazy add a log message with throwable payload if isErrorEnabled is true
Log a message at the ERROR level.
Parameters
the message string to be logged
Log a message at the ERROR level according to the specified msg and argument.
This form avoids superfluous object creation when the logger is disabled for the ERROR level.
Parameters
the msg string
the argument
Log a message at the ERROR level according to the specified msg and arguments.
This form avoids superfluous object creation when the logger is disabled for the ERROR level.
Parameters
the msg string
the first argument
the second argument
Log a message at the ERROR level according to the specified msg and arguments.
This form avoids superfluous string concatenation when the logger is disabled for the ERROR level. However, this variant incurs the hidden (and relatively small) cost of creating an Object[]
before invoking the method, even if this logger is disabled for ERROR. The variants taking .error and .error arguments exist solely in order to avoid this hidden cost.
Parameters
the msg string
a list of 3 or more arguments
Log an exception (throwable) at the ERROR level with an accompanying message.
Parameters
the message accompanying the exception
the exception (throwable) to log
Log a message with the specific Marker at the ERROR level.
Parameters
The marker specific to this log statement
the message string to be logged
This method is similar to .error method except that the marker data is also taken into consideration.
Parameters
the marker data specific to this log statement
the msg string
the argument
This method is similar to .error method except that the marker data is also taken into consideration.
Parameters
the marker data specific to this log statement
the msg string
the first argument
the second argument
This method is similar to .error method except that the marker data is also taken into consideration.
Parameters
the marker data specific to this log statement
the msg string
a list of 3 or more arguments
This method is similar to .error method except that the marker data is also taken into consideration.
Parameters
the marker data specific to this log statement
the message accompanying the exception
the exception (throwable) to log
Lazy add a log message if isErrorEnabled is true
Lazy add a log message with throwable payload if isErrorEnabled is true
Lazy add a log message with a marker if isErrorEnabled is true
Lazy add a log message with a marker and throwable payload if isErrorEnabled is true