diff --git a/src/bin/firebase-functions.ts b/src/bin/firebase-functions.ts index 83d131282..a977b8849 100644 --- a/src/bin/firebase-functions.ts +++ b/src/bin/firebase-functions.ts @@ -67,6 +67,7 @@ if (process.env.FUNCTIONS_CONTROL_API === "true") { res.setHeader("content-type", "text/yaml"); res.send(JSON.stringify(stackToWire(stack))); } catch (e) { + console.error(e); res.status(400).send(`Failed to generate manifest from function source: ${e}`); } });