diff --git a/src/index.ts b/src/index.ts index aedc373..8c92446 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,7 +8,7 @@ const log: Logger = new Logger({ name: '[Index]', type: 'pretty' }); const HOST = config.get('server.host') const PORT = config.get('server.port') -const server = app.listen(Number(PORT), String(HOST), () => { +const server = app.listen(Number(PORT), () => { log.info(`Server ${config.get('app.name')} running on port http://${HOST}:${PORT}`); });