diff --git a/src/middleware/packages/solid/services/notifications/channels/notification-channel.mixin.js b/src/middleware/packages/solid/services/notifications/channels/notification-channel.mixin.js index 009e3f000..c79a9bec7 100644 --- a/src/middleware/packages/solid/services/notifications/channels/notification-channel.mixin.js +++ b/src/middleware/packages/solid/services/notifications/channels/notification-channel.mixin.js @@ -257,6 +257,7 @@ module.exports = { async loadChannelsFromDb({ removeOldChannels }) { const accounts = await this.broker.call('auth.account.find'); for (const { webId } of accounts) { + this.logger.info(`Loading notification channels of ${webId}...`); try { const container = await this.actions.list({ webId }); for (const channel of arrayOf(container['ldp:contains'])) {