I am following this doc to try to debug my firebase cloud function: https://cloud.google.com/functions/docs/monitoring/debugging
First of all the The require line given in the doc was wrong so I changed it to this to make it compile:
require('@google-cloud/debug-agent').start();
Also after implementing this and deploying the functions using firebase deploy --only functions
there is no code in stack drive debug view. Any idea how to make this work?
Thanks :)