We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edf303b commit 05b83d8Copy full SHA for 05b83d8
1 file changed
lambdas/upsert-letter/src/handler/upsert-handler.ts
@@ -43,6 +43,7 @@ function getOperationFromType(type: string): UpsertOperation {
43
preparedRequest.data.letterVariantId,
44
deps,
45
);
46
+ deps.logger.info({ supplierSpec });
47
const letterToInsert: InsertLetter = mapToInsertLetter(
48
preparedRequest,
49
supplierSpec.supplierId,
@@ -106,6 +107,7 @@ function resolveSupplierForVariant(
106
107
variantId: string,
108
deps: Deps,
109
): SupplierSpec {
110
+ deps.logger.info({ variantMap: deps.env.VARIANT_MAP });
111
return deps.env.VARIANT_MAP[variantId];
112
}
113
0 commit comments