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 use a TAG, but I initialise it like this:
private static final String TAG = MyActivity.class.getName();
This way when I refactor my code the tag will also change accordingly.