-
I have the problem that one of my Java projects causes a CoderMalfunctionError int Netbeans 14 while indexing is performed. This interferes with code completion in this and other projects, as long the project is opened. I wanted to submit a bug report, but without knowing which file causes the issue, it might not be reproducible. Sadly the Exception does not tell me anything. Is there some way to find the file causing the issue? Bisecting the project could take a while and might cause other issues.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can enable detailed logging, but be prepared for TONS out output... run the IDE with argument(s): the logging will go to |
Beta Was this translation helpful? Give feedback.
You can enable detailed logging, but be prepared for TONS out output... run the IDE with argument(s):
-J-Dorg.netbeans.modules.parsing.api.Source.level=500
the logging will go to
$userdir/var/log/messages*
file(s). If you want the logs to also appear on the console (stdout), add-J-Dnetbeans.logger.console
.