diff options
Diffstat (limited to 'tools/deno_tcp_proxy.ts')
-rw-r--r-- | tools/deno_tcp_proxy.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/deno_tcp_proxy.ts b/tools/deno_tcp_proxy.ts index 96877fa20..02f5ab944 100644 --- a/tools/deno_tcp_proxy.ts +++ b/tools/deno_tcp_proxy.ts @@ -19,7 +19,7 @@ async function handle(conn: Deno.Conn): Promise<void> { } async function main(): Promise<void> { - console.log("Listening on", addr); + console.log(`Proxy listening on http://${addr}/`); while (true) { const conn = await listener.accept(); handle(conn); |