public class CommonsLog extends Object implements InternalLogApi
Modifier and Type | Method and 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)
InternalLogApi
debug
in interface InternalLogApi
message
- log this messagepublic void debug(Object message, Throwable t)
InternalLogApi
debug
in interface InternalLogApi
message
- log this messaget
- log this causepublic void error(Object message)
InternalLogApi
error
in interface InternalLogApi
message
- log this messagepublic void error(Object message, Throwable t)
InternalLogApi
error
in interface InternalLogApi
message
- log this messaget
- log this causepublic void fatal(Object message)
InternalLogApi
fatal
in interface InternalLogApi
message
- log this messagepublic void fatal(Object message, Throwable t)
InternalLogApi
fatal
in interface InternalLogApi
message
- log this messaget
- log this causepublic void info(Object message)
InternalLogApi
info
in interface InternalLogApi
message
- log this messagepublic void info(Object message, Throwable t)
InternalLogApi
info
in interface InternalLogApi
message
- 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 InternalLogApi
public 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 InternalLogApi
public 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 InternalLogApi
public 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 InternalLogApi
public 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 InternalLogApi
public 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 InternalLogApi
public void trace(Object message)
InternalLogApi
trace
in interface InternalLogApi
message
- log this messagepublic void trace(Object message, Throwable t)
InternalLogApi
trace
in interface InternalLogApi
message
- log this messaget
- log this causepublic void warn(Object message)
InternalLogApi
warn
in interface InternalLogApi
message
- log this messagepublic void warn(Object message, Throwable t)
InternalLogApi
warn
in interface InternalLogApi
message
- log this messaget
- log this causeCopyright © 2018. All rights reserved.