From 597f2d8d4d9b91ee586b9787d6ba52d247e4ff87 Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Sat, 14 Sep 2024 23:30:06 +0200 Subject: feat: print `Listening on` messages on stderr instead of stdout (#25491) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://github.com/denoland/deno/issues/25114 --------- Signed-off-by: Leo Kettmeir Co-authored-by: Bartek IwaƄczuk Co-authored-by: crowlkats Co-authored-by: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> --- tests/testdata/serve/parallel.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/testdata/serve') diff --git a/tests/testdata/serve/parallel.ts b/tests/testdata/serve/parallel.ts index f1f118c71..2ba7ccfca 100644 --- a/tests/testdata/serve/parallel.ts +++ b/tests/testdata/serve/parallel.ts @@ -1,7 +1,7 @@ -console.log("starting serve"); +console.error("starting serve"); export default { fetch(_req: Request) { - console.log("serving request"); + console.error("serving request"); return new Response("deno serve parallel"); }, }; -- cgit v1.2.3