Improve setter output message

This commit is contained in:
Phani Teja Marupaka
2020-10-06 14:41:14 -07:00
parent 68f67c183e
commit c96fa7c347
2 changed files with 5 additions and 5 deletions

View File

@@ -173,7 +173,7 @@ func (r *SetRunner) executeCmd(w io.Writer, pkgPath string) error {
fmt.Fprintf(w, "%s\n", err.Error())
}
} else {
fmt.Fprintf(w, "set %d field(s)\n", count)
fmt.Fprintf(w, "set %d field(s) of setter %q to value %q\n", count, r.Set.Name, r.Set.Value)
}
return nil
}