DsttanE
DsttanE

Reputation: 27

-endIn Service while Service started

WinDbg always prints "-endin service while service started". I just don't know why.

WinDbg Screenshot

Upvotes: 1

Views: 37

Answers (1)

Thomas Weller
Thomas Weller

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

Related Questions