I often use Visual Studio 2019's Output Window for debugging my Xamarin.Android apps. However, I nearly always receive tons of unnecessary messages starting with [View], such as the following:
[View] requestLayout() improperly called by androidx.recyclerview.widget.RecyclerView{c1098fc VFED..... ......ID 83,0-1440,94 #7f090150 app:id/rvPlayerNames} during layout: running second layout pass
I have looked at the following to try to figure out how to avoid these messages cluttering the Output Window:
https://docs.microsoft.com/en-us/xamarin/android/deploy-test/environment
But none of the stuff seemed to help. What can I do to restrict the Output Window to (or mostly to) my
System.Diagnostics.Debug.WriteLine
statements? Using these statements is not very useful if they have hundreds of meaningless lines between them.