diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-17 19:01:48 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-17 19:01:48 +1100 |
commit | e4d85450b8e7416e5c34b00cd78a9870644eb4b5 (patch) | |
tree | 1288f45aad8b2b7c4bc27c782b82397f599b9ca4 /src/gateway/opcodes | |
parent | comments and such (diff) | |
download | server-e4d85450b8e7416e5c34b00cd78a9870644eb4b5.tar.xz |
Remove IP logging from gateway
Diffstat (limited to 'src/gateway/opcodes')
-rw-r--r-- | src/gateway/opcodes/Identify.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts index 60b5da4c..422261f7 100644 --- a/src/gateway/opcodes/Identify.ts +++ b/src/gateway/opcodes/Identify.ts @@ -312,5 +312,5 @@ export async function onIdentify(this: WebSocket, data: Payload) { await setupListener.call(this); - console.log(`${this.ipAddress} identified as ${d.user.id}`); + // console.log(`${this.ipAddress} identified as ${d.user.id}`); } |