diff --git a/wetty.mjs b/wetty.mjs index 4726727..4a9a194 100644 --- a/wetty.mjs +++ b/wetty.mjs @@ -40,8 +40,6 @@ function createServer(port, sslopts) { function getCommand(socket, sshuser, sshpass, sshhost, sshport, sshauth, sshkey) { const { request } = socket; const match = request.headers.referer.match('.+/ssh/.+$'); - console.log("Match ", match); - console.log("user ", sshuser); const sshAddress = sshuser ? `${sshuser}@${sshhost}` : sshhost; const referer = url.parse(request.headers.referer, true); sshpass = referer.query.sshpass ? referer.query.sshpass : sshpass;