Closed
Description
Currently when running the code below the colors for the Verbose
and Warning
stream are exactly the same. Would it be possible to have a different color for Warning
, just like in the PowerShell ISE
?
$VerbosePreference = 'Continue'
Write-Verbose 'this is verbose text'
Write-Warning 'this is warning text'
Write-Verbose 'this is verbose text'
Probably #594 is related.