github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/cf/trace/printer.go (about)

     1  package trace
     2  
     3  //go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 . Printer
     4  
     5  type Printer interface {
     6  	Print(v ...interface{})
     7  	Printf(format string, v ...interface{})
     8  	Println(v ...interface{})
     9  	WritesToConsole() bool
    10  }