@posthog/agent 2.3.524 → 2.3.526
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent.js +1 -1
- package/dist/agent.js.map +1 -1
- package/dist/handoff-checkpoint.js +2 -2
- package/dist/handoff-checkpoint.js.map +1 -1
- package/dist/posthog-api.js +1 -1
- package/dist/posthog-api.js.map +1 -1
- package/dist/server/agent-server.js +8 -8
- package/dist/server/agent-server.js.map +1 -1
- package/dist/server/bin.cjs +8 -8
- package/dist/server/bin.cjs.map +1 -1
- package/package.json +3 -3
- package/src/handoff-checkpoint.ts +2 -2
- package/src/server/agent-server.ts +5 -5
|
@@ -6830,14 +6830,14 @@ var HandoffCheckpointTracker = class {
|
|
|
6830
6830
|
});
|
|
6831
6831
|
}
|
|
6832
6832
|
logCaptureMetrics(checkpoint, uploads) {
|
|
6833
|
-
this.logger.
|
|
6833
|
+
this.logger.debug("Captured handoff checkpoint", {
|
|
6834
6834
|
branch: checkpoint.branch,
|
|
6835
6835
|
head: checkpoint.head?.slice(0, 7),
|
|
6836
6836
|
totalBytes: this.sumRawBytes(uploads.pack, uploads.index)
|
|
6837
6837
|
});
|
|
6838
6838
|
}
|
|
6839
6839
|
logApplyMetrics(checkpoint, _downloads, totalBytes) {
|
|
6840
|
-
this.logger.
|
|
6840
|
+
this.logger.debug("Applied handoff checkpoint", {
|
|
6841
6841
|
branch: checkpoint.branch,
|
|
6842
6842
|
head: checkpoint.head?.slice(0, 7),
|
|
6843
6843
|
totalBytes
|