Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
fix(cli): notify the user when the production server is initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
juliomrqz committed Feb 25, 2019
1 parent 7406e2a commit 9973555
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"demo:build": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo build",
"demo:dev": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo dev",
"demo:generate": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo generate",
"demo:start": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo start",
"website:dev": "yarn workspace statusfy-website dev",
"website:generate": "yarn workspace statusfy-website generate",
"update-changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
Expand Down
2 changes: 1 addition & 1 deletion packages/@statusfy/core/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ module.exports = async function createServer(

return app.listen(port, host, () => {
// Listen the server
logger.debug("Server listening on http://" + host + ":" + port);
logger.info("Server listening on http://" + host + ":" + port);
});
};

0 comments on commit 9973555

Please sign in to comment.