From d69d7d305f40ca3b19608e294a570af5a9388371 Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 15 Apr 2023 23:57:13 +0200 Subject: [PATCH] remove `console.log('a')` --- src/handlers/http.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/handlers/http.ts b/src/handlers/http.ts index 59f1f86..940c867 100644 --- a/src/handlers/http.ts +++ b/src/handlers/http.ts @@ -7,7 +7,6 @@ import { Host } from '../config'; import hosts from '../hosts'; export async function handle(req: node_proxy.IncomingMessage, res: node_proxy.ServerResponse) { - console.log('a') if (hosts[req.headers.host || '']?.type === 'WS') return; // Return error if no host header or url is present