summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
Diffstat (limited to 'doPatch.go')
-rw-r--r--doPatch.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/doPatch.go b/doPatch.go
index b1d71cb..c441b3e 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -161,5 +161,13 @@ func doPatchGet() error {
return err
}
log.Info("Got Patchsets ok", psets.Uuid)
+
+ log.Info("got psets len", len(psets.Patchsets))
+ all := psets.SortByName()
+ for all.Scan() {
+ pset := all.Next()
+ // log.Info("pset name =", pset.Name)
+ dumpPatchset(pset)
+ }
return nil
}