I am running an app on a phone, I have defined this:
private static final String TAG = "111";
When I press a button I call this:
Log.d(TAG, "in push to talk on: 111 ");
However I don't see anything relating to 111 in the logcat output, I tried to create my own filter with a tag of 111, but nothing appears in this tab? How can I see these tag messages in logcat?
EDIT: i can see the messages if I change them to log.e weirdly.