From 2fba2b471ca9fa84e4847cd4311e978924167dc7 Mon Sep 17 00:00:00 2001 From: Michael Haswell Date: Tue, 10 Sep 2024 08:34:13 -0700 Subject: [PATCH] More logging --- src/api/notifications/notifications.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/notifications/notifications.controller.ts b/src/api/notifications/notifications.controller.ts index 7e0ab47ca..e27f51fdb 100644 --- a/src/api/notifications/notifications.controller.ts +++ b/src/api/notifications/notifications.controller.ts @@ -468,6 +468,7 @@ export class NotificationsController extends BaseController { startIdx, startIdx + this.broadcastSubscriberChunkSize, ); + Logger.log(subChunk); pullAll( pullAll( pullAll( @@ -605,6 +606,7 @@ export class NotificationsController extends BaseController { undefined, HttpStatus.INTERNAL_SERVER_ERROR, ); + Logger.log('Sending email'); await this.sendEmail(mailOptions); return await this.notificationMsgCB(data, null, e); } catch (ex) {