Skip to content

Commit

Permalink
fix: winston.info
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed Mar 5, 2021
1 parent 0021c60 commit 3f42d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ async function listen() {
server.listen(...args.concat([function (err) {
const onText = `${isSocket ? socketPath : `${bind_address}:${port}`}`;
if (err) {
winston.info(`[startup] NodeBB was unable to listen on: ${onText}`);
winston.error(`[startup] NodeBB was unable to listen on: ${onText}`);
reject(err);
}

Expand Down

0 comments on commit 3f42d40

Please sign in to comment.