Intellij不会在调试器中显示我的一些日志

时间:2013-05-23 03:21:38

标签: intellij-idea logcat

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

0 个答案:

没有答案