I am creating an Android Native app using Visual Studio 2019. I often use
System.Diagnostics.Debug.WriteLine();
When debugging. However, the Output window often displays a huge amount of other stuff that I have no need for (such as when an assembly is loaded). All this extra output sometimes makes it hard to find the output that I am sending. Where can I go to control what does & doesn't get output (or is this not possible)? Thanks.