@@ -65,6 +65,7 @@ app.get("/status/:id/", status);
// Healthcheck
app.get("/healthcheck/", function(req, res, next) {
+ console.log('hitting the healthcheck');
return res.status(200).send('I\'m a happy healthcheck.');
});