I have a WPF application which is intended to work offline in a 64-GB-RAM/2-CPU-Core devices. I have delivered the output directory to a tester to test the application...
The application is logging messages using different methods: Debug.WriteLine(), Trace.WriteLine() and Console.WriteLine() ... I have seen some tools like TraceSpy which can show Debug and Trace messages..
I wonder if there is a simple way to watch Console.WriteLine() messages at the testing device? or I have to change all my Console.WriteLine() to Trace.WriteLine()?