Why is running attached to the debugger so slow?

后端 未结 4 891
耶瑟儿~
耶瑟儿~ 2021-01-12 15:25

What is going on that causes a debug build to be so much slower attached to the debugger compared to unattached? They are both the same exe running.

Edit: Most of th

4条回答
  •  无人共我
    2021-01-12 16:17

    Do you have a lot of logging via OutputDebugString? Output produced by OutputDebugString is received by a debugger, but ignored when not running under a debugger.

提交回复
热议问题