From 91410b1a153a570b3f8c67ecf22af921de4728f9 Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Tue, 27 Apr 2021 14:43:27 +0200 Subject: [PATCH] App startup: add http:// before listen address for conveniance --- src/components/ExpressAppComponent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ExpressAppComponent.ts b/src/components/ExpressAppComponent.ts index 5ab489a..d4d41d2 100644 --- a/src/components/ExpressAppComponent.ts +++ b/src/components/ExpressAppComponent.ts @@ -20,7 +20,7 @@ export default class ExpressAppComponent extends ApplicationComponent { public async start(app: Express): Promise { 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