Detailed debug logs with Volley

前端 未结 5 1073
悲哀的现实
悲哀的现实 2020-12-03 14:08

In Restkit on iOS there is a verbose debug option. RKLogConfigureByName(\"*\", RKLogLevelTrace);. Does anyone know if there is an equivalent for Volley. Basical

5条回答
  •  伪装坚强ぢ
    2020-12-03 14:46

    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.

提交回复
热议问题