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