We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V 2.31.0-develop
config.js port:8090
console
export MM_PORT=9005 node serveronly
output
[2025-01-14 08:35:53.699] [INFO] >>> Ready to go! Please point your browser to: http://0.0.0.0:8090 <<<
from
serveronly/index.js: Log.info(`\n>>> Ready to go! Please point your browser to: ${httpType}://${bindAddress}:${config.port} <<<`);
MM is correctly on port 9005 only message is incorrect
npm start does not display that message
The text was updated successfully, but these errors were encountered:
simple fix
Log.info(`\n>>> Ready to go! Please point your browser to: ${httpType}://${bindAddress}:${global.mmPort || config.port} <<<`);
will provide a PR ...
Sorry, something went wrong.
gotta know about global.mmPort!!
fix wrong port in log message when starting server only (#3697)
6e40c44
fixes #3696
khassel
No branches or pull requests
V 2.31.0-develop
console
export MM_PORT=9005 node serveronly
output
from
MM is correctly on port 9005
only message is incorrect
npm start does not display that message
The text was updated successfully, but these errors were encountered: