1 想要实现 logcat 换行,可以使用 “\n” 或者使用 System.getProperty("line.separator")
public static final String LINE_SEPARATOR=System.getProperty("line.separator");Log.e(TAG, "网络请求开始时间: " + format.format(start)+ "\n请求地址:" + request.url()+ "\n请求方法:" + request.method()+ LINE_SEPARATOR+"请求头:" + request.headers()+ LINE_SEPARATOR+"请求体:" + request.body()+LINE_SEPARATOR+"连接状态:" + chain.connection());
2结果