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);