From 61ec339fafa2c887b5bdae73b584e8f3a0e863b4 Mon Sep 17 00:00:00 2001 From: Joseph Nelson Date: Tue, 28 Apr 2026 23:31:43 -0700 Subject: [PATCH] console logging data returned when uploading image --- createCollectionsFromCSVs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/createCollectionsFromCSVs.js b/createCollectionsFromCSVs.js index e068b71..6f9b863 100644 --- a/createCollectionsFromCSVs.js +++ b/createCollectionsFromCSVs.js @@ -124,6 +124,7 @@ const applyImageToItem = async (itemId, localImagePath, token) => { } const data = await response.json(); + console.log(`Returned item with image: ${JSON.stringify(data, null, 2)}`); return data; // Returns the item with the new image } catch (error) { console.error('Error applying image:', error);