summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-21 14:31:02 -0500
committerJeff Carr <[email protected]>2025-08-21 14:31:02 -0500
commitfd4b2aa6c9ff9d6c733bcbc98c9a0f5338a257be (patch)
tree48af210561f666c1e5650a59026f5d8a6083a6a8
parent9392657f76022e0a25087cd60c5066eda8789200 (diff)
output some info on the returned http body text
-rw-r--r--patchset.Send.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/patchset.Send.go b/patchset.Send.go
index 367769b..bb760ed 100644
--- a/patchset.Send.go
+++ b/patchset.Send.go
@@ -55,7 +55,7 @@ func (f *Forge) submitPatchset(pset *Patchset) error {
newpb := NewPatchsets()
if err := newpb.UnmarshalTEXT(body); err != nil {
- log.Info("forged DID NOT SEND BACK PROTOBUF")
+ log.Infof("forged DID NOT SEND BACK PROTOBUF len(body)=%d %s\n", len(body), body[0:40])
return err
}