update startup message

This commit is contained in:
2023-03-13 20:12:09 +01:00
parent e3af664868
commit 47b504de9c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ dbReady().then((e) => {
cacheReady().then((e) => {
processAll().then((e) => {
app.listen(port, '0.0.0.0', () => {
console.log(`Example app listening on port ${port}`)
console.log(`Tone client api listening on port ${port}`)
})
})
})
+1 -1
View File
@@ -19,6 +19,6 @@ app.use('/', server)
dbReady().then((e) => {
app.listen(port, '0.0.0.0', () => {
console.log(`Example app listening on port ${port}`)
console.log(`Tone server api listening on port ${port}`)
})
})