func()

in setuptest/logger.go [45:53]


func (s *StreamLogger) Logf(t testing.TestingT, format string, args ...interface{}) {
	// Sprintf removed as we don't want the prefixes to the log lines
	// log := fmt.Sprintf(format, args...)
	doLog(t, s.stream, args...)
	s.logCount++
	if s.outputProgress && s.logCount%50 == 0 {
		logger.Log(t, fmt.Sprintf("logging sample: %s", args))
	}
}