| Constructor and Description |
|---|
Log4JLoggerWrapper(String name) |
| Modifier and Type | Method and Description |
|---|---|
void |
debug(Object message)
Logs a message with debug log level.
|
void |
debug(Object message,
Throwable t)
Logs a message with debug log level.
|
void |
debug(Supplier<?> msgSupplier)
Logs a message which is only to be constructed if the logging level is
debug level
|
void |
debug(Supplier<?> msgSupplier,
Throwable t)
Logs a message (only to be constructed if the logging level is the debug
level) including the stack trace of the Throwable t passed as parameter.
|
void |
error(Object message)
Logs a message with error log level.
|
void |
error(Object message,
Throwable t)
Logs an error with error log level.
|
void |
error(Supplier<?> msgSupplier)
Logs a message which is only to be constructed if the logging level is
error level
|
void |
error(Supplier<?> msgSupplier,
Throwable t)
Logs a message (only to be constructed if the logging level is the error
level) including the stack trace of the Throwable t passed as parameter.
|
void |
fatal(Object message)
Logs a message with fatal log level.
|
void |
fatal(Object message,
Throwable t)
Logs an error with fatal log level.
|
String |
getName()
Get the name for this logger.
|
void |
info(Object message)
Logs a message with info log level.
|
void |
info(Object message,
Throwable t)
Logs an error with info log level.
|
void |
info(Supplier<?> msgSupplier)
Logs a message which is only to be constructed if the logging level is
the info level.
|
void |
info(Supplier<?> msgSupplier,
Throwable t)
Logs a message (only to be constructed if the logging level is the info
level) including the stack trace of the Throwable t passed as parameter.
|
boolean |
isDebugEnabled()
Is debug logging currently enabled?
|
boolean |
isErrorEnabled()
Is error logging currently enabled?
|
boolean |
isFatalEnabled()
Is fatal logging currently enabled?
|
boolean |
isInfoEnabled()
Is info logging currently enabled?
|
boolean |
isTraceEnabled()
Is trace logging currently enabled?
|
boolean |
isWarnEnabled()
Is warn logging currently enabled?
|
void |
trace(Object message)
Logs a message with trace log level.
|
void |
trace(Object message,
Throwable t)
Logs an error with trace log level.
|
void |
warn(Object message)
Logs a message with warn log level.
|
void |
warn(Object message,
Throwable t)
Logs an error with warn log level.
|
void |
warn(Supplier<?> msgSupplier)
Logs a message which is only to be constructed if the logging level is
the warn level.
|
void |
warn(Supplier<?> msgSupplier,
Throwable t)
Logs a message (only to be constructed if the logging level is the warn
level) including the stack trace of the Throwable t passed as parameter.
|
public Log4JLoggerWrapper(String name)
public void debug(Object message)
Logpublic void debug(Object message, Throwable t)
Logpublic void debug(Supplier<?> msgSupplier)
Logpublic void debug(Supplier<?> msgSupplier, Throwable t)
Logpublic void error(Object message)
Logpublic void error(Object message, Throwable t)
Logpublic void error(Supplier<?> msgSupplier)
Logpublic void error(Supplier<?> msgSupplier, Throwable t)
Logpublic void fatal(Object message)
Logpublic void fatal(Object message, Throwable t)
Logpublic void info(Object message)
Logpublic void info(Object message, Throwable t)
Logpublic void info(Supplier<?> msgSupplier)
Logpublic void info(Supplier<?> msgSupplier, Throwable t)
Logpublic boolean isDebugEnabled()
LogCall this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more
than debug.
isDebugEnabled in interface Logpublic boolean isErrorEnabled()
LogCall this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more
than error.
isErrorEnabled in interface Logpublic boolean isFatalEnabled()
LogCall this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more
than fatal.
isFatalEnabled in interface Logpublic boolean isInfoEnabled()
LogCall this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more
than info.
isInfoEnabled in interface Logpublic boolean isTraceEnabled()
LogCall this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more
than trace.
isTraceEnabled in interface Logpublic boolean isWarnEnabled()
LogCall this method to prevent having to perform expensive operations (for
example, String concatenation) when the log level is more
than warn.
isWarnEnabled in interface Logpublic void trace(Object message)
Logpublic void trace(Object message, Throwable t)
Logpublic void warn(Object message)
Logpublic void warn(Object message, Throwable t)
Logpublic void warn(Supplier<?> msgSupplier)
Logpublic void warn(Supplier<?> msgSupplier, Throwable t)
LogHDR Glossary HDR Concept Lists HDR Exceptions HDR Programmer's Guide HDR Implementation Guide HDR Profile Options
Copyright © 2016, 2018, Oracle. All rights reserved