From a987b7a17f42906e216d1513ad2b7891529cfa8b Mon Sep 17 00:00:00 2001 From: Sainan Date: Mon, 23 Dec 2024 21:15:53 +0100 Subject: [PATCH] improve: tell user that the WebUI is available --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index 55b37ba3..6bb6b6f2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -26,6 +26,10 @@ void (async (): Promise => { logger.info("HTTP server started on port " + httpPort); https.createServer(options, app).listen(httpsPort, () => { logger.info("HTTPS server started on port " + httpsPort); + + logger.info( + "Access the WebUI in your browser at http://localhost" + (httpPort == 80 ? "" : ":" + httpPort) + ); }); }); })();