Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Thread exiting message in .Net MVC console

I get this message: the thread has exited with code 0 sometimes in the output window in debug mode when running a .net mvc c# application.

The application still works after these messages, it does not crash and there is no reason to crash, any ideas on what this mean?

like image 470
davitz38 Avatar asked Dec 17 '22 03:12

davitz38


1 Answers

Those are not errors -- those messages are simply telling you that a background thread has exited. Zero means the thread ran and exited successfully.

like image 125
George Johnston Avatar answered Dec 31 '22 15:12

George Johnston