Output - Severity option (style) is not applied correctly in the OutputChannelManager append method #9110
Labels
bug
bugs found in the application
good first issue
good first issues for new contributors
help wanted
issues meant to be picked up, require help
output
issues related to the output
Hi,
Bug Description:
When using the OutputChannelManager the OutputChannelSeverity in the appendLine method does not work as expected, it does not color the Warning and Error as expected.
I have inspected the output line in the dev tools, and saw that the span over the message line has this class="mtk1 theia-output-warning", the mtk1 overrides the Yellow color defined in the theia-output-warning !!!
Steps to Reproduce:
try this:
const channel = this.outputChannelManager.getChannel('My Channel');
channel.appendLine("Test message...", OutputChannelSeverity.Warning);
you will get the line "Test message..." added to the channel but it is not colored.
Additional Information
The text was updated successfully, but these errors were encountered: