improve: tell user that the WebUI is available

This commit is contained in:
Sainan 2024-12-23 21:15:53 +01:00
parent a3c73459eb
commit a987b7a17f

View File

@ -26,6 +26,10 @@ void (async (): Promise<void> => {
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)
);
});
});
})();