From a418c4e86c82d307ff9a62eba217fc73cf1761ab Mon Sep 17 00:00:00 2001 From: lesion Date: Sun, 26 Aug 2018 23:42:26 +0200 Subject: [PATCH] show express url when debugging --- bin/www | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/www b/bin/www index 724eb03..2c3beb8 100755 --- a/bin/www +++ b/bin/www @@ -86,5 +86,5 @@ function onListening() { var bind = typeof addr === 'string' ? 'pipe ' + addr : 'port ' + addr.port; - debug('Listening on ' + bind); + debug(`Listening on http://${addr.address}:${addr.port} `); }