diff --git a/src/onebot/network/http-server.ts b/src/onebot/network/http-server.ts index 7e8a13e6..b197bdd2 100644 --- a/src/onebot/network/http-server.ts +++ b/src/onebot/network/http-server.ts @@ -88,7 +88,7 @@ export class OB11HttpServerAdapter extends IOB11NetworkAdapter await this.handleRequest(req, res); }); this.server.listen(this.config.port, this.config.host, () => { - this.core.context.logger.log(`[OneBot] [HTTP Server Adapter] Start On Port ${this.config.port}`); + this.core.context.logger.log(`[OneBot] [HTTP Server Adapter] Start On ${this.config.host}:${this.config.port}`); }); }