(f string, v ...interface{})
| 62 | } |
| 63 | |
| 64 | func (h *Handler) VerbosePrintf(f string, v ...interface{}) (int, error) { |
| 65 | if !h.debugEnabled || !h.IO.IsStdoutTTY() { |
| 66 | return 0, nil |
| 67 | } |
| 68 | return fmt.Fprintf(h.IO.ErrOut, f, v...) |
| 69 | } |
| 70 | |
| 71 | func (h *Handler) PrintBulletPoints(rows [][]string) (int, error) { |
| 72 | if !h.IO.IsStdoutTTY() { |
no test coverage detected