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)
Log
public void debug(Object message, Throwable t)
Log
public void debug(Supplier<?> msgSupplier)
Log
public void debug(Supplier<?> msgSupplier, Throwable t)
Log
public void error(Object message)
Log
public void error(Object message, Throwable t)
Log
public void error(Supplier<?> msgSupplier)
Log
public void error(Supplier<?> msgSupplier, Throwable t)
Log
public void fatal(Object message)
Log
public void fatal(Object message, Throwable t)
Log
public void info(Object message)
Log
public void info(Object message, Throwable t)
Log
public void info(Supplier<?> msgSupplier)
Log
public void info(Supplier<?> msgSupplier, Throwable t)
Log
public boolean isDebugEnabled()
Log
Call this method to prevent having to perform expensive operations (for
example, String
concatenation) when the log level is more
than debug.
isDebugEnabled
in interface Log
public boolean isErrorEnabled()
Log
Call this method to prevent having to perform expensive operations (for
example, String
concatenation) when the log level is more
than error.
isErrorEnabled
in interface Log
public boolean isFatalEnabled()
Log
Call this method to prevent having to perform expensive operations (for
example, String
concatenation) when the log level is more
than fatal.
isFatalEnabled
in interface Log
public boolean isInfoEnabled()
Log
Call this method to prevent having to perform expensive operations (for
example, String
concatenation) when the log level is more
than info.
isInfoEnabled
in interface Log
public boolean isTraceEnabled()
Log
Call this method to prevent having to perform expensive operations (for
example, String
concatenation) when the log level is more
than trace.
isTraceEnabled
in interface Log
public boolean isWarnEnabled()
Log
Call this method to prevent having to perform expensive operations (for
example, String
concatenation) when the log level is more
than warn.
isWarnEnabled
in interface Log
public void trace(Object message)
Log
public void trace(Object message, Throwable t)
Log
public void warn(Object message)
Log
public void warn(Object message, Throwable t)
Log
public void warn(Supplier<?> msgSupplier)
Log
public void warn(Supplier<?> msgSupplier, Throwable t)
Log
HDR Glossary HDR Concept Lists HDR Exceptions HDR Programmer's Guide HDR Implementation Guide HDR Profile Options
Copyright © 2016, 2018, Oracle. All rights reserved