当前页面: 
在线文档首页 > 
JBoss Seam  1.1.0 API 英文版文档
Log (JBoss Seam API Documentation) - JBoss Seam  1.1.0 API 英文版文档
org.jboss.seam.log
Interface Log
- All Known Implementing Classes: 
- LogImpl
- public interface Log 
A logging interface that integrates with Seam's
 message interpolation functionality.
- Author:
- Gavin King
| Method Summary | 
|  void | debug(Object object,
      Object... params)
 | 
|  void | debug(Object object,
      Throwable t,
      Object... params)
 | 
|  void | error(Object object,
      Object... params)
 | 
|  void | error(Object object,
      Throwable t,
      Object... params)
 | 
|  void | fatal(Object object,
      Object... params)
 | 
|  void | fatal(Object object,
      Throwable t,
      Object... params)
 | 
|  void | info(Object object,
     Object... params)
 | 
|  void | info(Object object,
     Throwable t,
     Object... params)
 | 
|  boolean | isDebugEnabled()
 | 
|  boolean | isErrorEnabled()
 | 
|  boolean | isFatalEnabled()
 | 
|  boolean | isInfoEnabled()
 | 
|  boolean | isTraceEnabled()
 | 
|  boolean | isWarnEnabled()
 | 
|  void | trace(Object object,
      Object... params)
 | 
|  void | trace(Object object,
      Throwable t,
      Object... params)
 | 
|  void | warn(Object object,
     Object... params)
 | 
|  void | warn(Object object,
     Throwable t,
     Object... params)
 | 
 
isDebugEnabled
boolean isDebugEnabled()
- 
 
isErrorEnabled
boolean isErrorEnabled()
- 
 
isFatalEnabled
boolean isFatalEnabled()
- 
 
isInfoEnabled
boolean isInfoEnabled()
- 
 
isTraceEnabled
boolean isTraceEnabled()
- 
 
isWarnEnabled
boolean isWarnEnabled()
- 
 
trace
void trace(Object object,
           Object... params)
- 
 
trace
void trace(Object object,
           Throwable t,
           Object... params)
- 
 
debug
void debug(Object object,
           Object... params)
- 
 
debug
void debug(Object object,
           Throwable t,
           Object... params)
- 
 
info
void info(Object object,
          Object... params)
- 
 
info
void info(Object object,
          Throwable t,
          Object... params)
- 
 
warn
void warn(Object object,
          Object... params)
- 
 
warn
void warn(Object object,
          Throwable t,
          Object... params)
- 
 
error
void error(Object object,
           Object... params)
- 
 
error
void error(Object object,
           Throwable t,
           Object... params)
- 
 
fatal
void fatal(Object object,
           Object... params)
- 
 
fatal
void fatal(Object object,
           Throwable t,
           Object... params)
-