qraqatit
qraqatit

Reputation: 523

How to disable warnings in NetBeans output window?

Is it possible to disable WARNINGS (text in red) for the Output window, and only allow it to report errors?

enter image description here

I try a bit with the settings, and according to other posts I set Quiet for the Ant, and option -q for Maven, but it has no effect whatsoever.

enter image description here

enter image description here

So can anyone tell if it can be done at all, and if so, how, please?

Upvotes: 0

Views: 568

Answers (1)

jjazzboss
jjazzboss

Reputation: 1422

From what I see the warnings are generated by the program you execute (or maybe by a library used by your program).

Ant or Maven are build tools to generate your program, that's why changing their verbosity level won't impact the program output.

You should check if your program accepts some command-line options, there might be one to adjust the verbosity level.

EDIT: just had a look at "aparapi", I see that it's a library, so you should check the library API if you can configure the verbosity level, or if you can redirect log messages to a file.

Upvotes: 1

Related Questions