类 VolleyLog

java.lang.Object
com.android.volley.VolleyLog

public class VolleyLog extends Object
Logging helper class.

to see Volley logs call:
<android-sdk>/platform-tools/adb shell setprop log.tag.Volley VERBOSE

  • 字段详细资料

    • TAG

      public static String TAG
    • DEBUG

      public static boolean DEBUG
  • 构造器详细资料

    • VolleyLog

      public VolleyLog()
  • 方法详细资料

    • setTag

      public static void setTag(String tag)
      Customize the log tag for your application, so that other apps using Volley don't mix their logs with yours.
      Enable the log property for your tag before starting your app:
      adb shell setprop log.tag.&lt;tag&gt;
    • v

      public static void v(String format, Object... args)
    • d

      public static void d(String format, Object... args)
    • e

      public static void e(String format, Object... args)
    • e

      public static void e(Throwable tr, String format, Object... args)
    • wtf

      public static void wtf(String format, Object... args)
    • wtf

      public static void wtf(Throwable tr, String format, Object... args)