diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-03-06 18:13:10 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 13:43:10 +0100 |
commit | 89d7bc693a281db06ac1b70ea3e81735d28069fc (patch) | |
tree | bbaf107ec52fc4cf694cf2b4e5ed72a531762783 | |
parent | d283a536551b879df2fa4709c5bca42e18b76d9f (diff) |
chore: remove debug console table log in node/http2 (#22741)
-rw-r--r-- | ext/node/polyfills/http2.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/node/polyfills/http2.ts b/ext/node/polyfills/http2.ts index d86148e4e..c81ae4b39 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]); } |