Skip to content

Commit

Permalink
fix(web-server): since node 12 there is no util.puts
Browse files Browse the repository at this point in the history
  • Loading branch information
yadimon committed Mar 11, 2020
1 parent 23e4b30 commit 2c57bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testapp/scripts/web-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var main = function() {
testApp.use(bodyParser.json());
testApp.use(testMiddleware);
testApp.listen(port);
util.puts(["Starting express web server in", testAppDir ,"on port", port].
console.log(["Starting express web server in", testAppDir ,"on port", port].
join(" "));
};

Expand Down

0 comments on commit 2c57bd8

Please sign in to comment.