Skip to content

Instantly share code, notes, and snippets.

@mastersobg
Created June 3, 2013 21:21
Show Gist options
  • Select an option

  • Save mastersobg/5701528 to your computer and use it in GitHub Desktop.

Select an option

Save mastersobg/5701528 to your computer and use it in GitHub Desktop.
Debug for java
boolean DEBUG = true;
void dbg(Object ...args) {
if(!DEBUG)
return;
for(Object o : args)
System.err.print(o + " ");
System.err.println();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment