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

@@ -121,7 +121,7 @@ export function createApiServer() {
const httpServer = apiServer.listen(externalPort, (err?: any) => {
if (err) throw err;
logger.info(
`API server is running on http://localhost:${externalPort}`
`Dashboard API server is running on http://localhost:${externalPort}`
);
});