We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329c269 commit f948e2bCopy full SHA for f948e2b
src/integrations/checkpoints/CheckpointTracker.ts
@@ -166,8 +166,8 @@ class CheckpointTracker {
166
"--allow-empty": null,
167
"--no-verify": null,
168
})
169
- const commitHash = result.commit || ""
170
- console.warn(`Checkpoint commit created.`)
+ const commitHash = (result.commit || "").replace(/^HEAD\s+/, "")
+ console.warn(`Checkpoint commit created: `, commitHash)
171
172
const durationMs = Math.round(performance.now() - startTime)
173
telemetryService.captureCheckpointUsage(this.taskId, "commit_created", durationMs)
0 commit comments