Jude Osborn
Jude Osborn

Reputation: 1798

Logging on gcloud node.js

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.

Upvotes: 2

Views: 228

Answers (1)

Stephen
Stephen

Reputation: 5770

Try using this command:

 gcloud preview app --verbosity debug run .

Upvotes: 1

Related Questions