App startup: add http:// before listen address for conveniance

This commit is contained in:
Alice Gaudon 2021-04-27 14:43:27 +02:00
parent a34b97ad5a
commit 91410b1a15
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export default class ExpressAppComponent extends ApplicationComponent {
public async start(app: Express): Promise<void> {
this.server = app.listen(this.port, this.addr, () => {
logger.info(`Web server running on ${this.addr}:${this.port}.`);
logger.info(`Web server running on http://${this.addr}:${this.port}.`);
});
// Proxy