diff --git a/setup/dynamo_util.ts b/setup/dynamo_util.ts index 6141c754..c7d4070b 100644 --- a/setup/dynamo_util.ts +++ b/setup/dynamo_util.ts @@ -18,7 +18,10 @@ export async function createTableAndPutItems( client: DynamoDBClient, { table, items }: CreateAndPut, ) { + console.group() + await createTable(client, table); + console.log("table created"); // NOTE: Running `put` operations concurrently with `Promise.all` would lead to running out of write buffer. for (const item of items) { @@ -27,6 +30,9 @@ export async function createTableAndPutItems( Item: item, }); } + + console.log("items are put"); + console.groupEnd(); } export function getCredFromEnv(): {