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
I got this when starting the server with DEBUG_MODE = true.
DEBUG_MODE = true
ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510) JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [debugInit.c:750]
The text was updated successfully, but these errors were encountered:
One has to change the order of the arguments. It seems, the debug mode has never worked before:
if (debug) { args.push('-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1044'); } args.push(...[ '-Declipse.application=org.eclipse.jdt.ls.core.id1', '-Dosgi.bundles.defaultStartLevel=4', '-Declipse.product=org.eclipse.jdt.ls.core.product' ]); if (debug) { args.push('-Dlog.level=ALL'); }
Edit: updated the snippet.
Sorry, something went wrong.
Closed via #1845.
No branches or pull requests
I got this when starting the server with
DEBUG_MODE = true
.The text was updated successfully, but these errors were encountered: