Skip to content

Commit

Permalink
Add host to server start log
Browse files Browse the repository at this point in the history
  • Loading branch information
aldahick committed Jun 29, 2024
1 parent 6ca26dd commit f5e3474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/http/http-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class HttpServer {
async start(): Promise<void> {
const { host = "localhost", port } = this.config.http;
await this.fastify?.listen({ port, host });
this.logger.info(`listening on port ${port}`);
this.logger.info(`listening on ${host}:${port}`);
}

async stop(): Promise<void> {
Expand Down

0 comments on commit f5e3474

Please sign in to comment.