Skip to content

Commit

Permalink
Remove unnecessary logging of closing the dev-server
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceK33z committed Mar 11, 2017
1 parent 1dc9461 commit aabeeaa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/webpack-dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,8 @@ function startDevServer(wpOpt, options) {

["SIGINT", "SIGTERM"].forEach(function(sig) {
process.on(sig, function() {
console.log(`Gracefully shutting down server after ${sig}...`);
server.close();
process.exit(); // eslint-disable-line no-process-exit
process.exit(); // eslint-disable-line no-process-exit
});
});

Expand Down

0 comments on commit aabeeaa

Please sign in to comment.