1
0
Fork 0

Output correct HTTP server port on start

Was outputting NaN, because the property that was being used no longer
existed after previous changes.

* src/server/daemon/Daemon.js (_initHttpServer): Use HTTP port number
  in output.
master
Mike Gerwitz 2017-09-08 14:19:58 -04:00
parent ed7e5fc547
commit 2baabf5e7e
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ module.exports = AbstractClass( 'Daemon',
.then( port => this._httpServer.listen( port, () =>
{
this._debugLog.log(
1, "Server running on port %d", _self._httpPort
1, "Server running on port %d", port
);
callback();