Cloud Functions
Getting Started
https://cloud.google.com/functions/docs?hl=ja
How-to
ログ出力
https://cloud.google.com/functions/docs/monitoring/logging
Cloud Loggingにログを送ることができる。
言語によってやり方が異なる。
- 共通: 標準出力/標準エラー出力
- Node.js
console.log()
->INFO
ログconsole.error()
->ERROR
ログ
参考: