Package es.kukenan.smartfi.logger
Interface WalletLogger
- All Superinterfaces:
org.slf4j.Logger
- All Known Implementing Classes:
WalletLoggerAdapter
public interface WalletLogger
extends org.slf4j.Logger
wallet logger interface for customize Logger of slf4j.
-
Field Summary
Fields inherited from interface org.slf4j.Logger
ROOT_LOGGER_NAME -
Method Summary
Modifier and TypeMethodDescriptionvoidaudit Log a message at the INFO level.voidLog a message at the INFO level according to the specified format and argument.voidLog a message at the INFO level according to the specified format and arguments.voidLog a message at the INFO level according to the specified format and arguments.voidLog an exception (throwable) at the INFO level with an accompanying message.voidLog a message with the specific Marker at the INFO level.voidThis method is similar toaudit(String, Object)method except that the marker data is also taken into consideration.voidThis method is similar toaudit(String, Object...)method except that the marker data is also taken into consideration.voidThis method is similar toaudit(String, Object, Object)method except that the marker data is also taken into consideration.voidThis method is similar toaudit(String, Throwable)method except that the marker data is also taken into consideration.voidauditObject(String format, Object objectParam) Log a message at the INFO level according to the specified format and argument with audit marker.booleanIs the audit logger instance enabled for the INFO level.booleanisAuditEnabled(org.slf4j.Marker marker) Similar toisAuditEnabled()method except that the marker data is also taken into account.Methods inherited from interface org.slf4j.Logger
debug, debug, debug, debug, debug, debug, debug, debug, debug, debug, error, error, error, error, error, error, error, error, error, error, getName, info, info, info, info, info, info, info, info, info, info, isDebugEnabled, isDebugEnabled, isErrorEnabled, isErrorEnabled, isInfoEnabled, isInfoEnabled, isTraceEnabled, isTraceEnabled, isWarnEnabled, isWarnEnabled, trace, trace, trace, trace, trace, trace, trace, trace, trace, trace, warn, warn, warn, warn, warn, warn, warn, warn, warn, warn
-
Method Details
-
isAuditEnabled
boolean isAuditEnabled()Is the audit logger instance enabled for the INFO level.- Returns:
- True if this Logger is enabled for the INFO level, false otherwise.
-
isAuditEnabled
boolean isAuditEnabled(org.slf4j.Marker marker) Similar toisAuditEnabled()method except that the marker data is also taken into account.- Parameters:
marker- The marker data to take into consideration.- Returns:
- True if this Logger is enabled for the INFO level, false otherwise.
-
audit
audit Log a message at the INFO level.- Parameters:
msg- the message.
-
audit
Log a message at the INFO level according to the specified format and argument.- Parameters:
format- the format string.argument- the argument.
-
audit
Log a message at the INFO level according to the specified format and arguments.- Parameters:
format- the format string.argument1- the first argument.argument2- the second argument.
-
audit
Log a message at the INFO level according to the specified format and arguments.- Parameters:
format- the format string.arguments- a list of 3 or more arguments.
-
audit
Log an exception (throwable) at the INFO level with an accompanying message.- Parameters:
msg- the message accompanying the exception.throwable- the exception (throwable) to log.
-
audit
Log a message with the specific Marker at the INFO level.- Parameters:
marker- the marker data specific to this log statement.msg- the message string to be logged.
-
audit
This method is similar toaudit(String, Object)method except that the marker data is also taken into consideration.- Parameters:
marker- the marker data specific to this log statement.format- the format string.argument- the argument.
-
audit
This method is similar toaudit(String, Object, Object)method except that the marker data is also taken into consideration.- Parameters:
marker- the marker data specific to this log statement.format- the format string.argument1- the first argument.argument2- the second argument.
-
audit
This method is similar toaudit(String, Object...)method except that the marker data is also taken into consideration.- Parameters:
marker- the marker data specific to this log statement.format- the format string.arguments- an array of arguments.
-
audit
This method is similar toaudit(String, Throwable)method except that the marker data is also taken into consideration.- Parameters:
marker- the marker data specific to this log statement.msg- the message accompanying the exception.throwable- the exception (throwable) to log.
-
auditObject
Log a message at the INFO level according to the specified format and argument with audit marker.- Parameters:
format- the format string.objectParam- object
-