-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
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
Use the launch configuration name as the terminal name #1508
Comments
@testforstephen This does not work for microservices where they use the same entry class. It should be configurable in the launch configuration, which is what was asked in the original issue. |
Which is also why this issue is titled the way it is. Sorry that wasn't more clear in the description. |
Since you're using microservice, you can change the user setting to The only difference between CONSOLE and TERMINAL is that the terminal accepts user input. Since you're service code, I guess user input is not needed. |
@testforstephen Ok, that works, thank you. Is there a way to have the debug consoles sorted / run alphabetically? It seems to run them randomly and difficult to see which services are properly running. |
this debug console order is controlled by the vscode client itself, not by the Java extension. It should sort the console titles by the time sequence of the creation of console. |
So is there no way to configure a start order so that the time sequence is what you want? |
How did you launch the app? Isn't the start order controlled by your manual click on run/debug action? |
I have a compound launch configuration. |
Recreating from microsoft/vscode#80442. This behavior is still present.
Description from linked ticket:
It was stated that this behavior is controlled by the debugger. Please implement this functionality for the Java debugger.
The text was updated successfully, but these errors were encountered: