summaryrefslogtreecommitdiff
path: root/handlePatches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 17:14:55 -0500
committerJeff Carr <[email protected]>2025-09-09 17:14:55 -0500
commit82b232f47a80eb389f5fec7e1960febdaa194d79 (patch)
tree9a486534ad0f7a08feaa17f56fab7a25ce562065 /handlePatches.go
parent979fd2f9781c999b7654fc8a186fd28fb12580de (diff)
use httppb.Log()
Diffstat (limited to 'handlePatches.go')
-rw-r--r--handlePatches.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/handlePatches.go b/handlePatches.go
index 595a918..1237cba 100644
--- a/handlePatches.go
+++ b/handlePatches.go
@@ -14,7 +14,7 @@ func addNewPatches(pb *forgepb.Patches, reqPB *httppb.HttpRequest) *forgepb.Patc
me.forge.AddNewPatch(newpatch)
newPatchesPB.Append(newpatch)
}
- reqPB.Log = append(reqPB.Log, log.Sprintf("Recived %d patches from client", newPatchesPB.Len()))
+ reqPB.Logf("Recived %d patches from client", newPatchesPB.Len())
return newPatchesPB
}