Visual Studio 2010 - View Results Only for a Specific Category

In Visual Studio 2010, it would be useful to view only the data in this debug category.

those.

Debug.WriteLine("debugging", "category1");
Debug.WriteLine("debugging2", "category2");

We have many developers developing the same project, and much of what happens in the output window, we do not need to see ... if we could only look at the debug information for " category1", making things a lot easier.

Are there any VS 2010 extensions for this, or is there a better way to handle this scenario?

+3
source share
1 answer

Apparently this is not possible (at least with the default setting for Visual Studio).

0
source

Source: https://habr.com/ru/post/1757731/


All Articles