我的所有日志语句都出现在adb logcat
中,但其中两个没有出现在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