使用效果图
LogUtil代码
package com.gaojc.text.Utils; import android.util.Log; public class LogUtil { private static String TAG = "是阿超的项目"; public static void e(String msg) { e(TAG, msg); } public static void e(String tag, String msg) { if (msg == null) { Log.e(tag, "msg = null"); return; } if (msg.length() > 4000) { for (int i = 0; i < msg.length(); i += 4000) { if (i + 4000 < msg.length()) { Log.e(tag, msg.substring(i, i + 4000)); }else { Log.e(tag, msg.substring(i, msg.length())); } } }else { Log.e(tag, msg); } } }