diff --git a/functions/todos-create.js b/functions/todos-create.js index ad858e9..9864659 100644 --- a/functions/todos-create.js +++ b/functions/todos-create.js @@ -10,7 +10,7 @@ const client = new faunadb.Client({ exports.handler = (event, context, callback) => { /* parse the string body into a useable JS object */ const data = JSON.parse(event.body) - console.log("Function `todo-create` invoked", data) + console.log("Hello webinar. Function `todo-create` invoked", data) const todoItem = { data: data }