1 package org.apache.velocity.runtime.log; 2 3 18 19 import java.util.Date ; 20 import org.apache.log.format.PatternFormatter; 21 22 public class VelocityFormatter extends PatternFormatter 23 { 24 public VelocityFormatter( String format ) 25 { 26 super( format ); 27 } 28 29 36 protected String getTime( final long time, final String format ) 37 { 38 return new Date ().toString(); 39 } 40 } 41 | Popular Tags |