如何在Log android中打印空行,分隔符?

时间:2015-09-09 06:58:25

标签: logging logcat android-logcat

我的活动中有很多日志语句。我使用Log.wtf - 它只显示我的日志而没有显示系统日志。

Log中的这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中,我想从不同的方法分隔不同的日志输出。否则我很难阅读日志。

这是一个生产力黑客问题。

1 个答案:

答案 0 :(得分:1)

请参阅此主题与您的主题非常相似的问题:

Android Logcat very strange behavior when getting empty string

答案是:空白行弄乱了日志记录系统的内部,所以你不应该这样做。

- 克里斯 http://lograbbit.com