Android工作室_很多记录在LogCat?

Android studio _ A lot of records in LogCat?

我是selecting来自sqlite然后加入ArrayList我的记录超过10000。然后在ArrayList循环显示在LogCat查看记录但在 LogCat 中没有显示所有数据?如何在 Logcat 或其他任何地方显示我的所有记录?

for (int i = 0; i < listCDM.size(); i++) {
    Log.i("MyLog",
            listCDM.get(i).getDate()
                    + "**" +
                    listCDM.get(i).getTime()
                    + "**" +
                    listCDM.get(i).getLat()
                    + "**" +
                    listCDM.get(i).getLng()
                    + "**" +
                    listCDM.get(i).getCounts() + "**" + i);
}

因为idea log cat buffer默认大小是1024,你可以改 android-studio\bin\idea.properties 是路径,您必须在其中更改缓冲区的默认大小 idea.cycle.buffer.size=1024

阅读此配置文档 http://tools.android.com/tech-docs/configuration