parisminton 9 лет назад
Родитель
Сommit
77d592fd02
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      server/index.js

+ 1 - 0
server/index.js Просмотреть файл

65
 
65
 
66
 // Healthcheck
66
 // Healthcheck
67
 app.get("/healthcheck/", function(req, res, next) {
67
 app.get("/healthcheck/", function(req, res, next) {
68
+  console.log('hitting the healthcheck');
68
   return res.status(200).send('I\'m a happy healthcheck.');
69
   return res.status(200).send('I\'m a happy healthcheck.');
69
 });
70
 });
70
 
71