change logging

This commit is contained in:
miloschwartz
2026-04-21 20:51:59 -07:00
parent 4df3613df7
commit 7f5c164e16
6 changed files with 10 additions and 10 deletions

View File

@@ -29,7 +29,7 @@ export async function createNextServer() {
nextServer.listen(nextPort, (err?: any) => {
if (err) throw err;
logger.info(
`Next.js server is running on http://localhost:${nextPort}`
`Dashboard Web UI server is running on http://localhost:${nextPort}`
);
});