chore: debug

This commit is contained in:
devthejo 2026-01-17 13:36:02 +01:00
parent e64ecfd023
commit 7b277a8020
No known key found for this signature in database
GPG key ID: 00CCA7A92B1D5351

View file

@ -37,6 +37,14 @@ module.exports = async function () {
observable.subscribe({
next: async ({ data }) => {
const { selectManyUser } = data
logger.debug(
{
userIds: selectManyUser.map(({ id }) => id),
},
"userTable"
)
await async.eachOf(selectManyUser, async ({ id }) =>
addTask(tasks.DEFAULT_SWAG_USERNAME, { userId: id })
)