Issue
I have variables/fields in my activity which are of type float.Is there any way to log there values in logcat as Log.w,Low.v,Log.i are not helping me...
Solution
Log.d("ADebugTag", "Value: " + Float.toString(myFloatVar));
Answered By - aromero
Answer Checked By - Cary Denson (JavaFixing Admin)