如何在 Log android 中打印空行和分隔符?
How do I print empty line, delimiter in Log android?
我的 activity 中有很多日志语句。我使用 Log.wtf - 它只显示我的日志,不显示系统日志。
日志中这4个空行:
Log.wtf("x", "\n");
Log.wtf("x", "\n");
Log.wtf("x", "\n");
Log.wtf("x", "\n");
Log.wtf("x", "number of children in answer place1: " + answer_place1.getChildCount());
Log.wtf("x", "number of children in answer place2: " + answer_place2.getChildCount());
实际上产生了这个不太好的日志输出:
09-09 02:52:19.066 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.066 22622:22622 F/x ]
09-09 02:52:19.070 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.070 22622:22622 F/x ]
09-09 02:52:19.066 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.066 22622:22622 F/x ]
09-09 02:52:19.070 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.070 22622:22622 F/x ]
它给我打印了一些信息,即只有时间,没有其他信息,但我只想要空行,所以当来自代码的不同部分、方法的日志出现在 logcat 中时很清楚,我想分隔不同方法的不同日志输出。否则我很难看懂日志。
这更像是一个生产力黑客问题。
查看与您的问题非常相似的帖子:
答案是:空行会扰乱日志系统的内部结构,因此您不应该这样做。
--克里斯
http://lograbbit.com
我的 activity 中有很多日志语句。我使用 Log.wtf - 它只显示我的日志,不显示系统日志。
日志中这4个空行:
Log.wtf("x", "\n");
Log.wtf("x", "\n");
Log.wtf("x", "\n");
Log.wtf("x", "\n");
Log.wtf("x", "number of children in answer place1: " + answer_place1.getChildCount());
Log.wtf("x", "number of children in answer place2: " + answer_place2.getChildCount());
实际上产生了这个不太好的日志输出:
09-09 02:52:19.066 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.066 22622:22622 F/x ]
09-09 02:52:19.070 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.070 22622:22622 F/x ]
09-09 02:52:19.066 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.066 22622:22622 F/x ]
09-09 02:52:19.070 22622-22622/nis.history_card_game A/x﹕ [ 09-09 02:52:19.070 22622:22622 F/x ]
它给我打印了一些信息,即只有时间,没有其他信息,但我只想要空行,所以当来自代码的不同部分、方法的日志出现在 logcat 中时很清楚,我想分隔不同方法的不同日志输出。否则我很难看懂日志。
这更像是一个生产力黑客问题。
查看与您的问题非常相似的帖子:
答案是:空行会扰乱日志系统的内部结构,因此您不应该这样做。
--克里斯 http://lograbbit.com