github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+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 }