Back to project page Tekdaqc-Android-Manager.
The source code is released under:
Apache License
If you think the Android project Tekdaqc-Android-Manager 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.toxicbakery.android.tekdaqc.utils; //from ww w .j a va2 s. c o m import android.util.Log; public final class TekLog { private static final String TAG = "TekLog"; public static final void d(String msg) { Log.d(TAG, msg); } }