IntelliJ - pause a thread while debugging
Can I pause a thread while debugging on intellij? What I wa开发者_如何学Pythonnt to have is something similiar to other ID - right click on a thread and pause it.
You either use a standard breakpoint which will pause all threads when hit or you can use a breakpoint with the suspend policy = thread.
精彩评论