Back to project page android-calendarview.
The source code is released under:
Apache License
If you think the Android project android-calendarview listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tripadvisor; //w w w . jav a 2 s .c o m import android.util.Log; /** * Log utility class to handle the log tag and DEBUG-only logging. */ final class Logr { public static void d(String message) { if (BuildConfig.DEBUG) { Log.d("TimesSquare", message); } } public static void d(String message, Object... args) { if (BuildConfig.DEBUG) { d(String.format(message, args)); } } }