@DefaultKey(value="log") @ValidScope(value="application") public class LogTool extends SafeConfig implements Serializable
This tool is used to log from within templates.
Of course, the desired log level must have been configured, using the method specific to the SLF4J implementation you are using. For instance, when using the webapp-slf4j-logger, you will use the following snippet of code in you /WEB-INF/web.xml file:
<context-param> <param-name>webapp-slf4j-logger.level</param-name> <param-value>debug</param-value> </context-param>
You can optionnaly specify the logger name in the config (the default is to re-use the engine logger):
<tools> <toolbox scope="application"> <tool class="org.apache.velocity.tools.generic.LogTool"/> </toolbox> </tools>
LOCK_CONFIG_KEY, log, LOGGER_NAME_KEY, SAFE_MODE_KEY, USE_CLASS_LOGGER_KEY
Constructor and Description |
---|
LogTool() |
Modifier and Type | Method and Description |
---|---|
void |
debug(String message) |
void |
error(String message) |
void |
info(String message) |
void |
trace(String message) |
void |
warn(String message) |
configure, configure, getLog, initLogger, isConfigLocked, isSafeMode, setLockConfig, setSafeMode
Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.