2

I'm experimenting with node.js and managed servers. So far so good. I just can't figure out how to log to the console on my development server. I'm talking about the console I see in the terminal after running gcloud preview app run . (not the browser console). console.log() doesn't appear to do anything at all.

leppie
  • 115,091
  • 17
  • 196
  • 297
Jude Osborn
  • 1,788
  • 16
  • 24

1 Answers1

1

Try using this command:

 gcloud preview app --verbosity debug run .
Stephen
  • 5,710
  • 1
  • 24
  • 32