In Restkit on iOS there is a verbose debug option. RKLogConfigureByName(\"*\", RKLogLevelTrace);. Does anyone know if there is an equivalent for Volley. Basical
RKLogConfigureByName(\"*\", RKLogLevelTrace);
If you like Volley to output debug messages, you can simply set
VolleyLog.DEBUG = true;
then you will see all verbose log of Volley in out adb logcat output.