diff --git a/main.ts b/main.ts index f3eb57b..8cf931e 100644 --- a/main.ts +++ b/main.ts @@ -29,10 +29,8 @@ async function meansToAnEnd(conn: Deno.Conn) { const a1 = bs.read.int32(); const a2 = bs.read.int32(); if (queryChar == "I") { - console.log(conn.remoteAddr, "Pushing I:", [a1, a2]); prices.push([a1, a2]); } else if (queryChar == "Q") { - console.log(conn.remoteAddr, "Querying:", a1, a2); let numMatches = 0; let sum = 0; for (const [ts, price] of prices) {