From 73f1f31fd99273da4ec950b61a4c5c12936abcd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Fri, 11 Apr 2014 04:48:07 +0200 Subject: [PATCH] Fix listen logging --- bin/lamassu-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lamassu-server b/bin/lamassu-server index 3ad549ba..12f6aebe 100755 --- a/bin/lamassu-server +++ b/bin/lamassu-server @@ -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)')); });