github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+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 }