diff --git a/src/server/util/carts.ts b/src/server/util/carts.ts index 335856d..0522289 100644 --- a/src/server/util/carts.ts +++ b/src/server/util/carts.ts @@ -23,6 +23,9 @@ const getRom = async (inputFile: string) => { const match = js.match(/\b_cartdat\s*=\s*(\[.*\])/); if (!match) { + console.log("BEGIN js contents --------------------------------------------"); + console.log(js); + console.log("END js contents ----------------------------------------------"); throw Error("Could not properly parse js file to find _cartdat"); }