1 26 27 package net.sourceforge.groboutils.codecoverage.v2.logger; 28 29 import java.util.Properties ; 30 31 import net.sourceforge.groboutils.codecoverage.v2.IChannelLogger; 32 import net.sourceforge.groboutils.codecoverage.v2.IChannelLoggerFactory; 33 34 35 47 public class NoOpChannelLoggerFactory implements IChannelLoggerFactory 48 { 49 60 public IChannelLogger createChannelLogger( 61 String propertyPrefix, Properties props, short channelIndex ) 62 { 63 return new NoOpChannelLogger(); 64 } 65 } 66 67 | Popular Tags |