Velocity initialization and use logs

Hi, allI have several questions1. When i initialize Velocity, procedure init() generate logs file(default name velocity.log). Is it possible use Velocity without log file? 2.How do cut off log file for Velocity? Thanks
[253 byte] By [gelorta] at [2007-10-2 17:38:47]
# 1

Investigate and find out which logging package it's using. It's probably one of Jakarta Commons Logging, Apache Log4j, or Sun's. Once you figure out which one it's using then your next step is to figure out how to configure that logging package.

http://jakarta.apache.org/commons/logging/

http://logging.apache.org/log4j/docs/

http://java.sun.com/j2se/1.5.0/docs/guide/logging/index.html

LumpyNosea at 2007-7-13 18:56:07 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
props.setProperty( "runtime.log.logsystem.class","org.apache.velocity.runtime.log.NullLogSystem" );
BIJ001a at 2007-7-13 18:56:07 > top of Java-index,Other Topics,Patterns & OO Design...