refactor: remove host from the server ready log (#11485)

This commit is contained in:
Harminder Virk
2025-02-17 14:07:44 +05:30
committed by GitHub
parent 16b89f60e0
commit a5ff1b92ce
2 changed files with 6 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
---
"@medusajs/medusa": patch
---
refactor: remove host from the server ready log

View File

@@ -206,10 +206,7 @@ async function start(args: {
const server = GracefulShutdownServer.create(
http_.listen(port, host).on("listening", () => {
logger.success(
serverActivity,
`Server is ready on http://${host || "localhost"}:${port}`
)
logger.success(serverActivity, `Server is ready on port: ${port}`)
displayAdminUrl({ container, host, port })
track("CLI_START_COMPLETED")
})