Package org.apache.velocity.runtime.log
Class CommonsLogLogChute
java.lang.Object
org.apache.velocity.runtime.log.CommonsLogLogChute
- All Implemented Interfaces:
LogChute
Redirects Velocity's LogChute messages to commons-logging.
To use, first set up commons-logging, then tell Velocity to use
this class for logging by adding the following to your velocity.properties:
runtime.log.logsystem.class = org.apache.velocity.runtime.log.CommonsLogLogChute
You may also set this property to specify what log/name Velocity's
messages should be logged to (example below is default).
runtime.log.logsystem.commons.logging.name = org.apache.velocity
- Since:
- 1.6
- Version:
- $Id: CommonsLogLogChute.java 71982 2004-02-18 20:11:07Z nbubna $
- Author:
- Nathan Bubna
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Default name for the commons-logging instanceprotected org.apache.commons.logging.Log
the commons-logging Log instancestatic final String
Property key for specifying the name for the log instanceFields inherited from interface org.apache.velocity.runtime.log.LogChute
DEBUG_ID, DEBUG_PREFIX, ERROR_ID, ERROR_PREFIX, INFO_ID, INFO_PREFIX, TRACE_ID, TRACE_PREFIX, WARN_ID, WARN_PREFIX
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
init
(RuntimeServices rs) LogChute methodsboolean
isLevelEnabled
(int level) Checks whether the specified log level is enabled.void
Send a log message from Velocity.void
Send a log message from Velocity with an error.
-
Field Details
-
LOGCHUTE_COMMONS_LOG_NAME
Property key for specifying the name for the log instance- See Also:
-
DEFAULT_LOG_NAME
Default name for the commons-logging instance- See Also:
-
log
protected org.apache.commons.logging.Log logthe commons-logging Log instance
-
-
Constructor Details
-
CommonsLogLogChute
public CommonsLogLogChute()
-
-
Method Details
-
init
LogChute methods -
log
Send a log message from Velocity. -
log
Send a log message from Velocity with an error. -
isLevelEnabled
public boolean isLevelEnabled(int level) Checks whether the specified log level is enabled.- Specified by:
isLevelEnabled
in interfaceLogChute
- Returns:
- True if a level is enabled.
-