diff --git a/VERSION b/VERSION index 476159173..6a1200d76 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0-${yyyy}${mm}${dd}.${HH}${MM}${SS}+${hash} +1.3.0-${yyyy}${mm}${dd}.${HH}${MM}${SS}+${hash} diff --git a/tests/helpers/allocation-helper.ts b/tests/helpers/allocation-helper.ts index bed146780..2e91415e8 100644 --- a/tests/helpers/allocation-helper.ts +++ b/tests/helpers/allocation-helper.ts @@ -6,6 +6,7 @@ import { QueryCommand, UpdateCommand, } from "@aws-sdk/lib-dynamodb"; +import { logger } from "tests/helpers/pino-logger"; import { envName } from "tests/constants/api-constants"; import { pollAllocatorLogWithOptions, @@ -142,6 +143,7 @@ export async function getAllocationLog< >(description: string, options?: AllocationLogOptions): Promise { const message = await pollAllocatorLogWithOptions(description, options); const allocationLog = JSON.parse(message) as TLog; + logger.info(`Log found: ${JSON.stringify(allocationLog)}`); return allocationLog; }