Here you can find the source of Log(int msg)
public static void Log(int msg)
//package com.java2s; public class Main { public static void Log(String msg) { android.util.Log.i("com.android.campusdishclient", msg); }//w w w . j a v a 2s. com 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)); } }