Issue
After upgrade to Ubuntu 20.04 maven output in Netbeans shows many annoying lines starting with:
[INFO] NETBEANS-ExecEvent: ...
Do you know a way to remove these lines?
Solution
I resolved by adding the following line to the simplelogger.properties file of my maven installation:
org.slf4j.simpleLogger.log.org.netbeans.modules.maven.event=off
It seems that NbEventSpy adds those lines, so the idea is to turn off logging from org.netbeans.modules.maven.event
Answered By - Alf