refactor: remove host from the server ready log (#11485)
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"@medusajs/medusa": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
refactor: remove host from the server ready log
|
||||||
@@ -206,10 +206,7 @@ async function start(args: {
|
|||||||
|
|
||||||
const server = GracefulShutdownServer.create(
|
const server = GracefulShutdownServer.create(
|
||||||
http_.listen(port, host).on("listening", () => {
|
http_.listen(port, host).on("listening", () => {
|
||||||
logger.success(
|
logger.success(serverActivity, `Server is ready on port: ${port}`)
|
||||||
serverActivity,
|
|
||||||
`Server is ready on http://${host || "localhost"}:${port}`
|
|
||||||
)
|
|
||||||
displayAdminUrl({ container, host, port })
|
displayAdminUrl({ container, host, port })
|
||||||
track("CLI_START_COMPLETED")
|
track("CLI_START_COMPLETED")
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user