I assume most of you are aware of android.util.Log All logging methods accept \'String tag\' as a first argument.
And my question is How do you usually tag y
I usually use the method name as the tag but from Thread
String TAG = Thread.currentThread().getStackTrace()[1].getMethodName();
This avoids the new Exception.