mirror of
https://github.com/nasa/openmct.git
synced 2025-04-14 06:26:44 +00:00
Merge pull request #915 from ev1stensberg/patch-1
[Functionality] Log app instance to the console
This commit is contained in:
commit
2a2f6e8142
8
app.js
8
app.js
@ -75,6 +75,8 @@
|
||||
// Expose everything else as static files
|
||||
app.use(express['static'](options.directory));
|
||||
|
||||
// Finally, open the HTTP server
|
||||
app.listen(options.port);
|
||||
}());
|
||||
// Finally, open the HTTP server and log the instance to the console
|
||||
app.listen(options.port, function() {
|
||||
console.log('Open MCT application running at localhost:' + options.port)
|
||||
});
|
||||
}());
|
||||
|
Loading…
x
Reference in New Issue
Block a user