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

@@ -36,7 +36,7 @@ export function createInternalServer() {
internalServer.listen(internalPort, (err?: any) => {
if (err) throw err;
logger.info(
`Internal server is running on http://localhost:${internalPort}`
`Internal API server is running on http://localhost:${internalPort}`
);
});