1 package org.apache.velocity.runtime.log; 2 3 18 19 import org.apache.velocity.runtime.RuntimeServices; 20 21 27 public class NullLogSystem implements LogSystem 28 { 29 public NullLogSystem() 30 { 31 } 32 33 public void init( RuntimeServices rs ) 34 throws Exception  35 { 36 } 37 38 45 public void logVelocityMessage(int level, String message) 46 { 47 } 48 } 49 | Popular Tags |