diff --git a/http/http_bench.ts b/http/http_bench.ts index c4d7add0d457f037e0e3cafd02ae4287c92f9b52..6d72d4be6ab9879d4f5afa2a776748dd6f18db78 100644 --- a/http/http_bench.ts +++ b/http/http_bench.ts @@ -7,6 +7,7 @@ const server = serve(addr); const body = new TextEncoder().encode("Hello World"); async function main(): Promise { + console.log(`http://${addr}/`); for await (const request of server) { request.respond({ status: 200, body }); }