Skip to content
This repository was archived by the owner on Aug 10, 2024. It is now read-only.

Commit b51999f

Browse files
committed
deleteFeedGenerator Response in JSON
1 parent 37049ae commit b51999f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

feed-generator/deleteFeedGenerator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ const run = async () => {
2828
let recordJSON = JSON.stringify(record, null, 2);
2929
console.log(`Deleting record ${recordJSON}`)
3030
let response = await agent.api.com.atproto.repo.deleteRecord(record);
31-
console.log(`Result ${response}`)
31+
let responseJSON = JSON.stringify(response, null, 2);
32+
console.log(`Response: ${responseJSON}`)
3233
}
3334

3435
run()

0 commit comments

Comments
 (0)