InternalLogApipublic class CommonsLog extends Object implements InternalLogApi
| Modifier and Type | Method | Description |
|---|---|---|
void |
debug(Object message) |
Logs a message with debug log level.
|
void |
debug(Object message,
Throwable t) |
Logs an error with debug log level.
|
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 |
fatal(Object message) |
Logs a message with fatal log level.
|
void |
fatal(Object message,
Throwable t) |
Logs an error with fatal log level.
|
void |
info(Object message) |
Logs a message with info log level.
|
void |
info(Object message,
Throwable t) |
Logs an error with info log level.
|
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.
|
public void debug(Object message)
InternalLogApidebug in interface InternalLogApimessage - log this messagepublic void debug(Object message, Throwable t)
InternalLogApidebug in interface InternalLogApimessage - log this messaget - log this causepublic void error(Object message)
InternalLogApierror in interface InternalLogApimessage - log this messagepublic void error(Object message, Throwable t)
InternalLogApierror in interface InternalLogApimessage - log this messaget - log this causepublic void fatal(Object message)
InternalLogApifatal in interface InternalLogApimessage - log this messagepublic void fatal(Object message, Throwable t)
InternalLogApifatal in interface InternalLogApimessage - log this messaget - log this causepublic void info(Object message)
InternalLogApiinfo in interface InternalLogApimessage - log this messagepublic void info(Object message, Throwable t)
InternalLogApiinfo in interface InternalLogApimessage - log this messaget - log this causepublic boolean isDebugEnabled()
InternalLogApi
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 InternalLogApipublic boolean isErrorEnabled()
InternalLogApi
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 InternalLogApipublic boolean isFatalEnabled()
InternalLogApi
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 InternalLogApipublic boolean isInfoEnabled()
InternalLogApi
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 InternalLogApipublic boolean isTraceEnabled()
InternalLogApi
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 InternalLogApipublic boolean isWarnEnabled()
InternalLogApi
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 InternalLogApipublic void trace(Object message)
InternalLogApitrace in interface InternalLogApimessage - log this messagepublic void trace(Object message, Throwable t)
InternalLogApitrace in interface InternalLogApimessage - log this messaget - log this causepublic void warn(Object message)
InternalLogApiwarn in interface InternalLogApimessage - log this messagepublic void warn(Object message, Throwable t)
InternalLogApiwarn in interface InternalLogApimessage - log this messaget - log this causeCopyright © 2017 Amazon Web Services, Inc. All Rights Reserved.