Skip to content

Commit

Permalink
使用verbose级别打印片段标记
Browse files Browse the repository at this point in the history
  • Loading branch information
liujingxing committed Jul 6, 2022
1 parent 51b96b1 commit 1289e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rxhttp/src/main/java/rxhttp/Platform.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public static void log(int priority, String tag, String content) {
logContent = logContent.substring(0, logContent.length() - 1);
Log.println(priority, tag, logContent);
if (!LogUtil.isSegmentPrint()) return;
Log.i(tag, "<---------------------------------- Segment " + (++i) + " ---------------------------------->");
Log.v(tag, "<---------------------------------- Segment " + (++i) + " ---------------------------------->");
content = content.substring(logContent.length());
}
if (content.length() > 0)
Expand Down

0 comments on commit 1289e48

Please sign in to comment.