From cc4cd3d06c97456972175bccdb3575fc87dca31e Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 9 Aug 2021 14:41:20 -0400 Subject: [PATCH] logging --- src/class/Context.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/class/Context.ts b/src/class/Context.ts index e32f23c..4cc157a 100644 --- a/src/class/Context.ts +++ b/src/class/Context.ts @@ -29,8 +29,7 @@ export default class Context { } public send(v: string) { - console.log(this.socket.write); - this.socket.write(`${v.toString()}\n`, (err) => { + this.socket.write(`${v.toString()}\r\n`, (err) => { if (err) { this.client.signale.error(`Error occurred while writing: ${err}`); }