output some info on the returned http body text

This commit is contained in:
Jeff Carr 2025-08-21 14:31:02 -05:00
parent 9392657f76
commit fd4b2aa6c9
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ func (f *Forge) submitPatchset(pset *Patchset) error {
newpb := NewPatchsets() newpb := NewPatchsets()
if err := newpb.UnmarshalTEXT(body); err != nil { 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 return err
} }