optimize: log

This commit is contained in:
linyuchen
2024-04-27 19:21:54 +08:00
parent c90ffbeb62
commit 9748d99f34
4 changed files with 13 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ export class WebsocketServerBase {
});
log(`ws服务启动成功, ${host}:${port}`);
} catch (e: any) {
throw Error('ws服务启动失败, ' + e.toString());
throw Error('ws服务启动失败, 请检查监听的ip和端口' + e.toString());
}
this.ws.on('connection', (wsClient, req) => {
const url: string = req.url!.split('?').shift() || '/';