From b6a1dba93e299196b3e5dc43a756c56c01c9fa1b Mon Sep 17 00:00:00 2001 From: Stuart Long Chay Boon Date: Thu, 3 Nov 2022 12:08:51 +0800 Subject: [PATCH] [offers][chore] add console log to print status while seeding --- apps/portal/prisma/readSheet.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/portal/prisma/readSheet.ts b/apps/portal/prisma/readSheet.ts index b4ac56c4..01302fd9 100644 --- a/apps/portal/prisma/readSheet.ts +++ b/apps/portal/prisma/readSheet.ts @@ -356,6 +356,10 @@ const generateAllAnalysis = async () => { }; Promise.all([seedSalaries()]) + .then(() => { + console.log(createdProfileIds.length + " profiles created") + console.log("Busy crunching analysis.....") + }) .then(() => generateAllAnalysis()) .then((_data) => { console.log('Seeding from salaries sheet complete');