refactor: log uid that failed

This commit is contained in:
Barış Soner Uşaklı
2025-07-22 16:35:55 -04:00
parent f6ed7ec21c
commit de71cc6310

View File

@@ -655,7 +655,7 @@ Actors.prune = async () => {
await user.deleteAccount(uid);
deletionCount += 1;
} catch (err) {
winston.error(err.stack);
winston.error(`Failed to delete user with uid ${uid}: ${err.stack}`);
}
} else {
notDeletedDueToLocalContent += 1;