github.com/rakutentech/cli@v6.12.5-0.20151006231303-24468b65536e+incompatible/cf/terminal/debug_printer.go (about) 1 package terminal 2 3 import ( 4 . "github.com/cloudfoundry/cli/cf/i18n" 5 "github.com/cloudfoundry/cli/cf/trace" 6 "time" 7 ) 8 9 type DebugPrinter struct{} 10 11 func (DebugPrinter) Print(title, dump string) { 12 trace.Logger.Printf("\n%s [%s]\n%s\n", HeaderColor(T(title)), time.Now().Format(time.RFC3339), trace.Sanitize(dump)) 13 }