1
mirror of https://github.com/jakejarvis/hoot.git synced 2025-10-18 20:14:25 -04:00

Add logging for deleted blobs and errors in blob-prune API route

This commit is contained in:
2025-10-13 09:51:46 -04:00
parent e56d57b23d
commit 0b4675ad9c

View File

@@ -49,6 +49,9 @@ export async function GET(req: Request) {
}
}
console.log("deleted:", deleted);
console.log("errors:", errors);
return NextResponse.json({
deletedCount: deleted.length,
errorsCount: errors.length,