在iOS的Restkit中有一个详细的调试选项. RKLogConfigureByName(“*”,RKLogLevelTrace);.有人知道是否有与Volley相当的地方.基本上我直接去ErrorListener,但是我没有在LogCat中没有附加的信息.都:
VolleyLog.e("Error: ",error.toString());
和:
VolleyLog.e("Error: ",error.getMessage());
打印:
2.onErrorResponse: Error:
解决方法
如果您想从排练库中查询详细日志,则必须使用adb
adb -s 42f63b0de7318fe1 shell setprop log.tag.Volley VERBOSE
其中“42f63b0de7318fe1”是您将获得的设备ID
adb devices
如果要持久使用此设置
adb -s 42f63b0de7318fe1 shell setprop persist.log.tag.Volley VERBOSE
如果你只有一个设备,你可以省略-s参数
另见How to set ADT system property in eclipse so it always runs