Debug / Standard build of Java application - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T00:47:53Zhttp://stackoverflow.com/feeds/question/869264http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/869264/debug-standard-build-of-java-application0Debug / Standard build of Java applicationsteve2009-05-15T15:12:49Z2009-05-15T15:25:22Z
<p>Greetings, </p>
<p>I'm using embedded java, I write the application to a low resource device. One of the problems I get is when the code crashes the device stops. I can get a little information from it with some logging that I've added. (Simple print statements) </p>
<p>This logging cannot remain in the application due to memory constraints. </p>
<p>I was wondering does anyone know is there a flag I can pass to the JVM to state if its a debug or standard compilation I require. </p>
<p>I'd like for the print statements to be included if its a debug build, if it is a standard build to remove the print statements. I ask because I've to constantly cut and paste the statements etc. (IT's a pain)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/869264/debug-standard-build-of-java-application/869279#8692791Answer by alamar for Debug / Standard build of Java applicationalamar2009-05-15T15:15:41Z2009-05-15T15:15:41Z<p>Well, you'll have to use a pre-processor, and still it would be a kind of ugly.</p>
<p>Just pre-process your source before compilation. Using <code>cpp</code>, for example.</p>
<p>It is said that javac sometimes might drop statements in dead condition branches, including static final booleans, like</p>
<pre><code>private static final DEBUG = false;
if(DEBUG) System.err.println("Entered");
</code></pre>
<p>But I'm not sure, I advise you to try that and check if bytecode contains that call.</p>
http://stackoverflow.com/questions/869264/debug-standard-build-of-java-application/869283#8692832Answer by mmyers for Debug / Standard build of Java applicationmmyers2009-05-15T15:16:30Z2009-05-15T15:25:22Z<p>You can make use of the fact that <code>if (constant)</code> is optimized by the compiler.</p>
<p>Make a global variable somewhere called <code>DEBUG</code>:</p>
<pre><code>public static final boolean DEBUG = true;
</code></pre>
<p>and then do your logging like so:</p>
<pre><code>if (DEBUG) {
System.out.println("Debug");
}
</code></pre>
<p>To disable debugging, simply change <code>DEBUG</code> to <code>false</code>, and all of the logging statements will be optimized away by the compiler. You can verify this by looking at the generated bytecode with <code>javap -c</code>.</p>
<p>For example:</p>
<pre><code>class DebugTest {
public static final boolean DEBUG = true;
public static void main(String[] args) {
if (DEBUG) {
int a = 10;
System.out.println("a = " + a);
}
}
}
</code></pre>
<p>is compiled as:</p>
<pre>
Compiled from "DebugTest.java"
class DebugTest extends java.lang.Object{
public static final boolean DEBUG;
DebugTest();
Code:
0: aload_0
1: invokespecial #1; //Method java/lang/Object."":()V
4: return
public static void main(java.lang.String[]);
Code:
0: bipush 10
2: istore_1
3: getstatic #2; //Field java/lang/System.out:Ljava/io/PrintStream;
6: new #3; //class java/lang/StringBuilder
9: dup
10: invokespecial #4; //Method java/lang/StringBuilder."":()V
13: ldc #5; //String a =
15: invokevirtual #6; //Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
18: iload_1
19: invokevirtual #7; //Method java/lang/StringBuilder.append:(I)Ljava/lang/StringBuilder;
22: invokevirtual #8; //Method java/lang/StringBuilder.toString:()Ljava/lang/String;
25: invokevirtual #9; //Method java/io/PrintStream.println:(Ljava/lang/String;)V
28: return
}</pre>
<p>Changing <code>DEBUG</code> to <code>false</code> yields:</p>
<pre>Compiled from "DebugTest.java"
class DebugTest extends java.lang.Object{
public static final boolean DEBUG;
DebugTest();
Code:
0: aload_0
1: invokespecial #1; //Method java/lang/Object."":()V
4: return
public static void main(java.lang.String[]);
Code:
0: return
}</pre>
http://stackoverflow.com/questions/869264/debug-standard-build-of-java-application/869331#8693311Answer by matt b for Debug / Standard build of Java applicationmatt b2009-05-15T15:23:52Z2009-05-15T15:23:52Z<p>Is the issue that the logging statements must be removed from the standard release, or just that they cannot be enabled?</p>
<p>If it's only the latter, than simply wrap your log statements in an if-check as the other answers have mentioned. </p>
<p>Whatever you do, don't continue copy/pasting your code in and out of the project - automate that manual work. Save yourself time.</p>