Remove rogue console.log for the status code

This commit is contained in:
Joel Marcey 2018-01-29 21:05:28 -08:00
parent cb2f0eda62
commit 8c71572d7a

View file

@ -521,7 +521,6 @@ function execute(port) {
request.get(
'http://localhost:' + port + req.path + slash + 'index.html',
(err, response, body) => {
console.log(response.statusCode);
if (!err) {
if (response) {
res.status(response.statusCode).send(body);