Lines Matching refs:v
55 func (v *verboseLog) StartAction(action *Action, counts Counts) {}
57 func (v *verboseLog) FinishAction(result ActionResult, counts Counts) {
63 fmt.Fprintf(v.w, "[%d/%d] %s\n", counts.FinishedActions, counts.TotalActions, cmd)
66 fmt.Fprintf(v.w, "FAILED: %s\n", strings.Join(result.Outputs, " "))
70 fmt.Fprintln(v.w, result.Output)
74 func (v *verboseLog) Flush() {
75 v.w.Close()
78 func (v *verboseLog) Message(level MsgLevel, message string) {
79 fmt.Fprintf(v.w, "%s%s\n", level.Prefix(), message)
82 func (v *verboseLog) Write(p []byte) (int, error) {
83 fmt.Fprint(v.w, string(p))