Browse Source

show express url when debugging

lesion 5 years ago
parent
commit
a418c4e86c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bin/www

+ 1 - 1
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}  `);
 }