github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+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  }