我所有的日志语句都出现在 中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