Skip to content

Commit 9170817

Browse files
committed
fix(prepayment-webflow): fix log message
1 parent aeac5a9 commit 9170817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functions/pre-payment-webhook-webflow/pre-payment-webhook-webflow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ function sufficientInventory(comparable) {
302302
if (inventoryField === undefined) {
303303
// The Webflow collection does not have the proper inventory field: ignore
304304
console.log(`Warning: the inventory field (${field}) does not exist in this webflow collection. Skipping inventory check.`);
305-
console.debug(`Available fields: `, Object.keys(wfItem));
305+
console.log(`Available fields: `, Object.keys(wfItem));
306306
return true;
307307
}
308308
const fxQuantity = Number(fxItem.quantity);

0 commit comments

Comments
 (0)