ログ ステートメントはすべて に表示されますがadb logcat
、そのうちの 2 つは Intellij Logcat に表示されません。なんで?
Log.i(TAG, "in the long click");
CommentViewHolder commentViewHolder = (CommentViewHolder) view.getTag();
Log.i(TAG, "got the comment holder");
addRequest(mAppController.deleteComment(mPostId,
commentViewHolder.comment_id));
Log.i(TAG, "added the request");
return true;
これは、「すべてのメッセージ」フィルターを使用した Intellij Logcat の出力です。
05-22 20:14:30.723: INFO/rose_tag(24319): in the long click
これは、次を使用した出力adb logcat
です。
I/rose_tag(24319): in the long click
I/rose_tag(24319): got the comment holder
I/rose_tag(24319): added the request