Skip to content

Instantly share code, notes, and snippets.

@pratamawijaya
Created May 5, 2015 11:14
Show Gist options
  • Save pratamawijaya/02d3652469f3c4f11875 to your computer and use it in GitHub Desktop.
Save pratamawijaya/02d3652469f3c4f11875 to your computer and use it in GitHub Desktop.
Utils log debug
public class UtilsLog{
public static void DEBUG(String message){
if(BuildConfig.DEBUG){
Log.d("debug",message);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment