Is it possible for me to print the Boolean value returned from a method in a Log message? I am able to print String values, but I am not sure how to print Boolean values in Log
I would do it like this:
Log.d("SomeTag" , booleanValue?"true":"false");