I’ve got a ListActivity class that correctly displays, and I can select list items and things happen as expected. But I have Log.* commands that aren’t logging. Other classes that are called after OnClick are correctly logging. For instance, my onCreate has this
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.e(MY_DEBUG, "Creating list of actions"); // does not log?!?!?
setTitle("Choose an action for this widget"); // executes fine
// do other stuff... works fine
}
Any ideas?
Try using Log.i(MY_DEBUG, “Creating list of actions”);