Picking up a Firebase project that I left last spring I don't remember how console.log
works under firebase server
.
I have a function (that works) where I try to write some debugging info. Like this:
exports.myfun = functions.https.onRequest((req, res) => {
console.log("---- does this show up somewhere???");
...
I run this locally (with firebase serve
) and expected to see the output from console.log
in the command line window where I started the server. But there is nothing.
Where does the output go?