From 89d7bc693a281db06ac1b70ea3e81735d28069fc Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Wed, 6 Mar 2024 18:13:10 +0530 Subject: [PATCH] chore: remove debug console table log in node/http2 (#22741) --- ext/node/polyfills/http2.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/node/polyfills/http2.ts b/ext/node/polyfills/http2.ts index d86148e4e2..c81ae4b39a 100644 --- a/ext/node/polyfills/http2.ts +++ b/ext/node/polyfills/http2.ts @@ -317,7 +317,6 @@ function closeSession(session: Http2Session, code?: number, error?: Error) { session[kDenoConnRid], session[kDenoClientRid], ); - console.table(Deno[Deno.internal].core.resources()); if (session[kDenoConnRid]) { core.tryClose(session[kDenoConnRid]); }