Fix listen logging

This commit is contained in:
Maciej Małecki 2014-04-11 04:48:07 +02:00
parent 02fcc42638
commit 73f1f31fd9

View file

@ -22,5 +22,5 @@ if (!argv.http) {
var server = createServer(options);
server.listen(port, function () {
console.log('lamassu-server listening on port ' + port + ' ' + argv.http ? '(http)' : '(https)');
console.log('lamassu-server listening on port ' + port + ' ' + (argv.http ? '(http)' : '(https)'));
});