protected ExtendedProperties loadConfiguration(ServletConfig config)
throws IOException
{
// configure Velocity engines for using logging adapter
ExtendedProperties configuration = super.loadConfiguration(config);
configuration.clearProperty(VelocityEngine.RUNTIME_LOG_LOGSYSTEM_CLASS);
configuration.clearProperty("runtime.log.logsystem.log4j.category");
configuration.setProperty(VelocityEngine.RUNTIME_LOG_LOGSYSTEM, new VelocityEngineLogger());
return configuration;
}