fix console print

This commit is contained in:
Linh Tran 2023-12-04 22:04:41 +07:00
parent dbcd3573c4
commit d0e657161e

View File

@ -14,6 +14,6 @@ server.listen({
port: JAN_API_PORT,
host: JAN_API_HOST
}).then(() => {
console.log(`JAN API listening at: http://0.0.0.0:${JAN_API_PORT}`);
console.log(`JAN API listening at: http://${JAN_API_HOST}:${JAN_API_PORT}`);
})