Reputation: 12352
When I am doing a large refactoring, IntelliJ IDEA 15 seems to hang.
How do I make it spew more logs so I can tell it is doing something and not hung?
Upvotes: 2
Views: 439
Reputation: 97148
IntelliJ IDEA does very little logging. The only way to make it spew more logs is to modify the IntelliJ IDEA Community Edition source code and add more logging statements.
As the commenters correctly pointed out, a much better way to see what IntelliJ IDEA is doing is to capture its thread dump using jstack.
Upvotes: 3