public class NoOpLog extends Object implements Log, Serializable
Log that throws away all messages.spring-jcl variant)| 限定符和类型 | 方法和说明 |
|---|---|
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 NoOpLog()
public NoOpLog(String name)
public 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 在接口中 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 在接口中 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 在接口中 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 在接口中 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 在接口中 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 在接口中 Logpublic void fatal(Object message, Throwable t)
Logpublic void error(Object message, Throwable t)
Logpublic void debug(Object message, Throwable t)
Log