Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to turn off the log of The thread 'Win32 Thread' (0x1bfc) has exited with code 0 (0x0)?

These information logs are very annoying in the visual studio output. In java I can just turn the logging level up for that class but how do I turn this off in C# as normal Win32 threads are terminating. I have log4net in my program so all other logs I can seem to configure.

like image 339
Dean Hiller Avatar asked Aug 21 '12 23:08

Dean Hiller


1 Answers

Assuming you are talking about messages that appear in Visual Studio's Output window... if you right-click the window, you'll see a menu that looks like this:

enter image description here

You can turn off Process Exit Messages, Thread Exit Messages, and anything else you don't want to see.

like image 148
Marty Avatar answered Nov 14 '22 22:11

Marty