Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/algorithm/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Intellij idea Intellij不';t在调试器中显示我的一些日志_Intellij Idea_Logcat - Fatal编程技术网

Intellij idea Intellij不';t在调试器中显示我的一些日志

Intellij idea Intellij不';t在调试器中显示我的一些日志,intellij-idea,logcat,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.deleteCo

我的所有日志语句都出现在
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中使用“所有消息”过滤器的输出:

这是使用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

它看起来像一只虫子。如果你有一个可复制的测试用例,请。谢谢,我已经报告了。
I/rose_tag(24319): in the long click
I/rose_tag(24319): got the comment holder
I/rose_tag(24319): added the request