diff options
author | Marvin Hagemeister <marvin@deno.com> | 2024-09-14 23:30:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 23:30:06 +0200 |
commit | 597f2d8d4d9b91ee586b9787d6ba52d247e4ff87 (patch) | |
tree | 82bfa7272208b81b34e79572f3c9a5bcc6c4658f /tests/testdata | |
parent | af2d992ecd2b9320072164b6ee295c31a3194406 (diff) |
feat: print `Listening on` messages on stderr instead of stdout (#25491)
Fixes https://github.com/denoland/deno/issues/25114
---------
Signed-off-by: Leo Kettmeir <crowlkats@toaxl.com>
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Co-authored-by: crowlkats <crowlkats@toaxl.com>
Co-authored-by: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com>
Diffstat (limited to 'tests/testdata')
-rw-r--r-- | tests/testdata/serve/parallel.ts | 4 |
1 files changed, 2 insertions, 2 deletions
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"); }, }; |