The problem
I'm developing a SDK with using the Volley library for http(s) calls.
I'm able to hide my application logs using a customize Log class wrapper, and I would like to disable every log level printing of Volley
, because it might expose sensitive information sent by HTTPS.
I know you can use proguard to disable logging of application, but I also want to be able to toggle logging on and off from the server side for debugging specific scenarios.
What have I tried
I took a look at the source, and it seems that the DEBUG flag in the VolleyLog class only changes the log level, but keeps ERROR
calls in the log, so it isn't a solution for me.
Is it possible to hide all Volley
logs ?