Reputation: 739
console.log("Log")
shows up as an Info level log in the firebase functions log.
console.debug("Debug")
does not show up at all.
I have the log viewer set to display all log levels.
Is there something I need to do to support different log levels?
This is for the fulfillment for a dialogflow application, if this matters. I would guess it doesn't but it's my only experience with firebase.
Upvotes: 2
Views: 509
Reputation: 1309
console.debug
is for internal messages.
You need to use:
Check the documentation.
Upvotes: 3