android - Detailed debug logs with Volley -


in restkit on ios there verbose debug option. rklogconfigurebyname("*", rklogleveltrace);. know if there equivalent volley. going straight errorlistener no additional info in logcat. both:

volleylog.e("error: ", error.tostring()); 

and:

volleylog.e("error: ", error.getmessage()); 

prints:

2.onerrorresponse: error:  

if want verbose log volley library, have use adb

adb -s 42f63b0de7318fe1 shell setprop log.tag.volley verbose 

where "42f63b0de7318fe1" device id by

adb devices 

if want persist setting use

adb -s 42f63b0de7318fe1 shell setprop persist.log.tag.volley verbose 

if have 1 device can omit -s argument

see how set adt system property in eclipse runs

kill , restart app apply setting.


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -