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