From 0749ca9815e95cbdbf8bac70f8f6f7718439d8ae Mon Sep 17 00:00:00 2001 From: Parthu K Date: Thu, 20 Sep 2018 22:07:02 -0700 Subject: [PATCH] added console.log --- server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index 488b7dc..719f34b 100644 --- a/server.js +++ b/server.js @@ -5,11 +5,11 @@ var fs = require('fs'); const appInsights = require('applicationinsights'); appInsights.setup(); appInsights.start(); - +console.log('Test1'); http.createServer(function (req, res) { fs.readFile('index.html', function (err, data) { res.writeHead(200, { 'Content-Type': 'text/html', 'Content-Length': data.length }); res.write(data); res.end(); }); -}).listen(port); \ No newline at end of file +}).listen(port);