From 501391c60d32f497499adaf96a3dc8673e701dda Mon Sep 17 00:00:00 2001 From: Alejo Thomas Ortega Date: Fri, 9 Aug 2024 16:15:46 -0300 Subject: [PATCH] debug --- lambdas/src/ports/the-graph-client.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lambdas/src/ports/the-graph-client.ts b/lambdas/src/ports/the-graph-client.ts index 5efe92071..07d8d2d2e 100644 --- a/lambdas/src/ports/the-graph-client.ts +++ b/lambdas/src/ports/the-graph-client.ts @@ -264,6 +264,7 @@ export async function createTheGraphClient(components: { const maticWearablesPromise = getItemsByOwner('maticCollectionsSubgraph', owner, itemTypes) const [ethereumWearables, maticWearables] = await Promise.all([ethereumWearablesPromise, maticWearablesPromise]) + logger.debug('Matic response', { maticWearables: maticWearables.join(', ') }) return ethereumWearables.concat(maticWearables) }