Here you can find the source of Log(String msg)
public static void Log(String msg)
//package com.java2s; public class Main { public static void Log(String msg) { android.util.Log.i("com.android.campusdishclient", msg); }//from w w w . j ava2 s. c o m public static void Log(int msg) { android.util.Log.i("com.android.campusdishclient", String.valueOf(msg)); } public static void Log(String msg1, int msg) { android.util.Log.i("com.android.campusdishclient", msg1 + String.valueOf(msg)); } }