Skip to content

Commit

Permalink
Merge pull request #19 from HadesArchitect/master
Browse files Browse the repository at this point in the history
Fixes log output (#18)
  • Loading branch information
mando222 authored Jan 3, 2019
2 parents fac026b + 0f6fbe1 commit ec8225d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const startPromise = Promise.try(() => {

// Attach some logging to start/stop
server.on('listening', () => {
logger.log('info', 'KillrVideo Web Server listening on %j', server.address());
logger.log('info', 'KillrVideo Web Server listening on %j', server.address(), {});
});
server.on('close', () => {
logger.log('info', 'KillrVideo Web Server is closed');
Expand Down Expand Up @@ -87,4 +87,4 @@ if (process.platform === 'win32') {
output: process.stdout
})
.on('SIGINT', () => process.emit('SIGINT'));
}
}

0 comments on commit ec8225d

Please sign in to comment.