a tool to help your Letta AI agents navigate bluesky

Add author handle to notification log message

Changed files
+1 -1
tasks
+1 -1
tasks/checkNotifications.ts
··· 64 64 let notificationCounter = 1; 65 65 for (const notification of unreadNotifications) { 66 66 console.log( 67 - `processing notification #${notificationCounter} [${notification.reason}]`, 67 + `processing notification #${notificationCounter} [${notification.reason} from @${notification.author.handle}]`, 68 68 ); 69 69 await processNotification(notification); 70 70 notificationCounter++;