I am using volley library to call rest web services and I am using post and get but I don\'t know why I am sending post and it received as post from the server side so I want to
Volley prints out information using Log.isLoggable()
. This function is kind of weird, so in order to see the volley logs you need to do the following:
VollyLog.setTag("MyTag")
. The default tag is "Volley"
.adb shell
in the adb location (platform-tools library by default).setprop log.tag.MyTag VERBOSE
("MyTag" should be replaced with whatever your tag is according to step 1).The Volley logs will now be printed out.
Note that this sometimes gets reset, so you'll need to do it again. I think whenever you restart your phone.