Skip to content

Commit fc33dfb

Browse files
authored
Lower handoff artifact warnings to debug (#3531)
1 parent bca6aa1 commit fc33dfb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/agent/src/handoff-checkpoint.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class HandoffCheckpointTracker {
128128
!!capture.headPack && !uploads.pack?.storagePath;
129129
const indexUploadMissing = !uploads.index?.storagePath;
130130
if (packUploadMissing || indexUploadMissing) {
131-
this.logger.warn(
131+
this.logger.debug(
132132
"Discarding handoff checkpoint: required artifact uploads did not complete",
133133
{
134134
checkpointId: capture.checkpoint.checkpointId,
@@ -245,7 +245,7 @@ export class HandoffCheckpointTracker {
245245

246246
const content = await readFile(filePath);
247247
if (content.byteLength > MAX_ARTIFACT_UPLOAD_BYTES) {
248-
this.logger.warn(
248+
this.logger.debug(
249249
"Skipping handoff artifact upload: file exceeds the artifact size limit",
250250
{
251251
name,

0 commit comments

Comments
 (0)