|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.velocity.runtime.log.Log
public class Log
Convenient wrapper for LogChute functions. This implements the RuntimeLogger methods (and then some). It is hoped that use of this will fully replace use of the RuntimeLogger.
Constructor Summary | |
---|---|
Log()
Creates a new Log that wraps a HoldingLogChute. |
|
Log(LogChute chute)
Creates a new Log that wraps the specified LogChute. |
Method Summary | |
---|---|
void |
debug(Object message)
Log a debug message. |
void |
debug(Object message,
Throwable t)
Log a debug message and accompanying Throwable. |
void |
error(Object message)
Log an error message. |
void |
error(Object message,
Throwable t)
Log an error message and accompanying Throwable. |
protected LogChute |
getLogChute()
Returns the LogChute wrapped by this Log instance. |
void |
info(Object message)
Log an info message. |
void |
info(Object message,
Throwable t)
Log an info message and accompanying Throwable. |
boolean |
isDebugEnabled()
Returns true if debug level messages will be printed by the LogChute. |
boolean |
isErrorEnabled()
Returns true if error level messages will be printed by the LogChute. |
boolean |
isInfoEnabled()
Returns true if info level messages will be printed by the LogChute. |
boolean |
isTraceEnabled()
Returns true if trace level messages will be printed by the LogChute. |
boolean |
isWarnEnabled()
Returns true if warn level messages will be printed by the LogChute. |
protected void |
log(int level,
Object message)
|
protected void |
log(int level,
Object message,
Throwable t)
|
protected void |
setLogChute(LogChute chute)
Updates the LogChute wrapped by this Log instance. |
void |
trace(Object message)
Log a trace message. |
void |
trace(Object message,
Throwable t)
Log a trace message and accompanying Throwable. |
void |
warn(Object message)
Log a warning message. |
void |
warn(Object message,
Throwable t)
Log a warning message and accompanying Throwable. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Log()
public Log(LogChute chute)
chute
- Method Detail |
---|
protected void setLogChute(LogChute chute)
chute
- The new value for the log chute.protected LogChute getLogChute()
protected void log(int level, Object message)
protected void log(int level, Object message, Throwable t)
public boolean isTraceEnabled()
public void trace(Object message)
message
- public void trace(Object message, Throwable t)
message
- t
- public boolean isDebugEnabled()
public void debug(Object message)
message
- public void debug(Object message, Throwable t)
message
- t
- public boolean isInfoEnabled()
public void info(Object message)
message
- public void info(Object message, Throwable t)
message
- t
- public boolean isWarnEnabled()
public void warn(Object message)
message
- public void warn(Object message, Throwable t)
message
- t
- public boolean isErrorEnabled()
public void error(Object message)
message
- public void error(Object message, Throwable t)
message
- t
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |