update log output

This commit is contained in:
davidwells 2018-06-11 18:15:54 -07:00
parent 18d03002cb
commit c404e856cf
5 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ const client = new faunadb.Client({
exports.handler = (event, context, callback) => {
const id = event.path.replace(/\/\.netlify\/functions\/todos-read\//, "")
console.log(`readOne todo ${id}`)
console.log(`Function 'todo-read' invoked. Read id: ${id}`)
return client.query(q.Get(q.Ref(`classes/todos/${id}`)))
.then((response) => {
console.log("success", response)