github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/cf/trace/printer.go (about) 1 package trace 2 3 //go:generate counterfeiter . Printer 4 5 type Printer interface { 6 Print(v ...interface{}) 7 Printf(format string, v ...interface{}) 8 Println(v ...interface{}) 9 WritesToConsole() bool 10 }