I have a command line utility that outputs a lot of information to the console. Sometimes it output error, which I'd like easily see in real time.
If these errors were output in red it would be very easy to spot them. The problem is that all text lines are the default white.
Is there any way to intercept the console output and reformat it before it's print?
I know I can redirect the output stream of Console.Write
but this does not give me the ability to reformat it.
Is there any way of doing this? Can someone just point me to the right direction?