summaryrefslogtreecommitdiff
path: root/patchset.Make.go
diff options
context:
space:
mode:
Diffstat (limited to 'patchset.Make.go')
-rw-r--r--patchset.Make.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/patchset.Make.go b/patchset.Make.go
index 040a353..e3be08c 100644
--- a/patchset.Make.go
+++ b/patchset.Make.go
@@ -228,8 +228,12 @@ func (f *Forge) submitPatchset(pset *Patchset) error {
}
test := strings.TrimSpace(string(body))
- for _, line := range strings.Split(test, "\n") {
+ lines := strings.Split(test, "\n")
+ count := 0
+ for _, line := range lines {
log.Info("got back:", line)
+ count += 1
}
+ log.Info("Total patches:", count)
return nil
}