DonJayamanne / javaVSCode

Extension for java development on VSCode (deprecated)
https://marketplace.visualstudio.com/items?itemName=donjayamanne.javaDebugger
MIT License
43 stars 29 forks source link

Use correct output categories #48

Closed rianadon closed 7 years ago

rianadon commented 7 years ago

I've noticed that the output of the Java program being debugged is always yellow, while with other debuggers it's white. Also, in my last PR the warning I created was white, while it should have been yellow. Here are what the colors are currently:

image

When looking at the DOM, VS Code adds a warn class to the output of the Java program, which doesn't really make sense as the first line should be styled as a warning.

This pull request makes the output look like this:

image

by categorizing the warning message as console (which gets registered as a warning) and the output as stdout (before it was console which is the default category).