Reputation: 27
WinDbg always prints "-endin service while service started". I just don't know why.
Upvotes: 1
Views: 37
Reputation: 59410
By default, WinDbg will print everything that goes to the debug output, i.e. OutputDebugString of Windows API or Debug.WriteLine() in .NET.
To me, the output looks exactly like some debug output of the program and is not specific to WinDbg.
To confirm this, you could run the application without debugger and use SysInternals DebugView and check if you can see the same messages there.
Upvotes: 1