diff options
Diffstat (limited to 'ext/node/polyfills/http2.ts')
-rw-r--r-- | ext/node/polyfills/http2.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/node/polyfills/http2.ts b/ext/node/polyfills/http2.ts index baa2c6e21..98edf40f4 100644 --- a/ext/node/polyfills/http2.ts +++ b/ext/node/polyfills/http2.ts @@ -127,6 +127,7 @@ type Http2Headers = Record<string, string | string[]>; const debugHttp2Enabled = false; function debugHttp2(...args) { if (debugHttp2Enabled) { + // deno-lint-ignore no-console console.log(...args); } } @@ -1636,16 +1637,19 @@ export class Http2Server extends Server { this.emit("stream", stream, headers); return await stream._deferred.promise; } catch (e) { + // deno-lint-ignore no-console console.log(">>> Error in serveHttpOnConnection", e); } return new Response(""); }, () => { + // deno-lint-ignore no-console console.log(">>> error"); }, () => {}, ); } catch (e) { + // deno-lint-ignore no-console console.log(">>> Error in Http2Server", e); } }, |