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);