Add console to ping

This commit is contained in:
Evan Morikawa 2016-07-06 14:59:56 -07:00
parent af9d5da17c
commit 2e4427d96e

View file

@ -6,6 +6,7 @@ module.exports = (server) => {
auth: false,
},
handler: (request, reply) => {
console.log("---> Ping!")
reply("pong")
},
});