+5
-1
tasks/checkNotifications.ts
+5
-1
tasks/checkNotifications.ts
···
78
78
// marks all notifications that were processed as seen
79
79
// based on time from when retrieved instead of finished
80
80
await bsky.updateSeenNotifications(startedProcessingTime);
81
-
81
+
console.log(
82
+
`🔹 done processing ${unreadNotifications.length} notification${
83
+
unreadNotifications.length > 1 ? "s" : ""
84
+
}…`,
85
+
);
82
86
// increases counter for notification processing session
83
87
agentContext.processingCount++;
84
88
} else {