Java tutorial
//package com.java2s; import android.util.Log; public class Main { public static void showLog(String title, String content, boolean isShow) { if (isShow) { Log.d(title, content); } } }