Android Log Log(String msg1, int msg)

Here you can find the source of Log(String msg1, int msg)

Description

Log

Declaration

public static void Log(String msg1, int msg) 

Method Source Code

//package com.java2s;

public class Main {
    public static void Log(String msg) {
        android.util.Log.i("com.android.campusdishclient", msg);
    }/*from w  ww  .  j  a  v a  2s . 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));
    }
}

Related

  1. logE(String log, Throwable tr)
  2. logW(String log)
  3. logW(String log, Throwable tr)
  4. Log(String msg)
  5. Log(int msg)
  6. logd(String msg)
  7. loge(String msg)
  8. logi(String msg)
  9. logw(String msg)