log helper method - Android App

Android examples for App:Log

Description

log helper method

Demo Code


//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
    }
}

Related Tutorials