feat: add error handle
Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
parent
15197355c5
commit
ed9fec281c
@ -21,6 +21,10 @@ function createConnection(host: string, port: number, username: string) {
|
||||
return client;
|
||||
}
|
||||
|
||||
client.on('error', (error) => {
|
||||
console.log("Client Error", error)
|
||||
})
|
||||
|
||||
client.on('end', (resone) => {
|
||||
console.log("Client End Resone:", resone)
|
||||
client = createConnection('192.168.2.5', 25577, username)
|
||||
@ -48,6 +52,8 @@ rl.on('line', function (line) {
|
||||
switch (line) {
|
||||
case "":
|
||||
break;
|
||||
case "eval":
|
||||
break;
|
||||
case "write":
|
||||
break;
|
||||
case "/respawn":
|
||||
|
Loading…
Reference in New Issue
Block a user