スケジュール起動のログ記録
この例は、Server Hook の スケジュール起動 により自動起動されることを想定しています。
Server Hook 設定ファイルに指定されたパラメータの内容を開発者ログに出力します。
function sendDailyMessage(params, context, done) {
// Output a message with the passed parameters.
console.log("Exec send w/ params " + JSON.stringify(params));
done("CRON EXECUTED");
}