I am having lots of logging statements to debug for example.
Log.v(TAG, \"Message here\"); Log.w(TAG, \" WARNING HERE\");
while deploying t
You should use
if (Log.isLoggable(TAG, Log.VERBOSE)) { Log.v(TAG, "my log message"); }