dr. evil
dr. evil

Reputation: 27285

How can I hide an exception type from the output window in Visual Studio?

I'm testing something and the output windows is being flooded with exceptions.

How can I filter an exception type that is shown in the output window.


Note:

Avoiding exceptions is not possible in this case.

Upvotes: 5

Views: 2573

Answers (2)

vahapt
vahapt

Reputation: 1715

Hiding an exception type is not possible as I know. But to filter out all exception messages, right click output window and uncheck "Exception Messages".

Upvotes: 13

JaredPar
JaredPar

Reputation: 755567

I do not believe this is possible. I think you can suppress all exceptions if a certain option is ticked but there is no way to filter the ones that are displayed.

Upvotes: 4

Related Questions