Created
May 5, 2015 11:14
-
-
Save pratamawijaya/02d3652469f3c4f11875 to your computer and use it in GitHub Desktop.
Utils log debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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