인텔리제이(intellij) 디버깅 모드 간헐적으로 느려지는 케이스 해결법.

2025. 1. 22. 09:48개발

반응형

예전부터 인텔리제이를 구매해서 사용중이지만.. 요즘 무언가 디버깅포인트가 몇개없는데 특정 상황에서 디버깅이 안되는게 아니라 30초~ 길게는 1분도 넘게 특정포인트에서만 느려지는 케이스가 발생했다..

 

다른 글들을 검색했을때 보여지는 브레이크 포인트가 10개 30개 이렇게 걸려있는게 아니라 1개만 걸려있어도 그랬었다.

 

그래서 관련해서 글을 찾아본 결과 해결방법은 다음과 같았다.

정리를 해보자면

setting에서 Enabled Collections classesEnable toString() object view를 비활성화 해주라는 것 이였다.

공식 홈페이지

https://intellij-support.jetbrains.com/hc/en-us/articles/206544799-Java-slow-performance-or-hangups-when-starting-debugger-and-stepping

 

누군가가 작성한 글

https://medium.com/@nihlaakram/how-to-fix-slow-debugging-in-intellij-idea-615fa0ee2a8e

 

How to fix slow debugging in IntelliJ IDEA

I started working with IntelliJ IDEA recently, after over 2 years. Everything was smooth and flawless untill I started to hit the “slow…

medium.com

 

반응형