Last active
August 29, 2015 14:18
-
-
Save mstfldmr/1bcfd179bfd3615b45a3 to your computer and use it in GitHub Desktop.
Enable Volley Logging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#If you want verbose Log from the volley library you have to use adb | |
adb -s DEVICE_ID shell setprop log.tag.Volley VERBOSE | |
#you can get your DEVICE_ID by | |
adb devices | |
#If you want to persist this setting use | |
adb -s DEVICE_ID shell setprop persist.log.tag.Volley VERBOSE | |
#If you have only one device you can ommit the -s argument |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment