소스 검색

Logging the healthcheck.

parisminton 8 년 전
부모
커밋
77d592fd02
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      server/index.js

+ 1 - 0
server/index.js 파일 보기

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