Can I implement an ILogger that outputs to a console window?
My only thought is a console application that does a pass-through from Console.In to Console.Out which is started by the implementation, which would have to be a singleton instance...
Is there another, possibly simpler approach or is that the way to do it?
Note: I just remembered I solved this requirement way back in the day on a unix platform. It was to synchronously append to a text file, and then use tail -f on that file from a console...