Android examples for App:Log
log helper method
//package com.java2s; import android.util.Log; public class Main { public static void log(String tag, String info) { Log.d(tag, info);// w w w .j a v a2 s .co m } }