public class

VolleyLog

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

Class Overview

Logging helper class.

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

Summary

Fields
public static boolean DEBUG
public static String TAG
Public Constructors
VolleyLog()
Public Methods
static void d(String format, Object... args)
static void e(String format, Object... args)
static void e(Throwable tr, String format, Object... args)
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.
static void v(String format, Object... args)
static void wtf(String format, Object... args)
static void wtf(Throwable tr, String format, Object... args)
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static boolean DEBUG

public static String TAG

Public Constructors

public VolleyLog ()

Public Methods

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

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

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

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;

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

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

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