Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse compiler options - How can I set the debug level

Tags:

java

eclipse

I was wondering how you can set the debug level when building a java source file or project in the Eclipse IDE? The way I would do it manually with java would be

javac -g Foo.java
like image 650
Joeblackdev Avatar asked Mar 03 '26 21:03

Joeblackdev


1 Answers

You can control the debug output by selecting the Properties menu entry when rightclicking your project in the Package Explorer view and selection the Java Compiler entry in the dialog.

Debug Settings

like image 145
Torsten Avatar answered Mar 06 '26 12:03

Torsten