diff --git a/server/index.js b/server/index.js index efba66d..becbdcb 100644 --- a/server/index.js +++ b/server/index.js @@ -103,7 +103,7 @@ sock.on('message', (msg, info) => { if (!user) return; const targetIp = ips[user.username]; const targetPort = ports[user.username]; - console.log(targetIp, targetPort); + console.log(targetIp, targetPort, user, ips, ports); if (!targetIp || !targetPort) return; sock.send(encrypt(dec, user.key, config.iv, config.algorithm), targetPort, targetIp); });