This commit is contained in:
雷欧(林平凡)
2024-12-02 16:50:25 +08:00
parent 176f202f25
commit 8fd6bad912

View File

@@ -573,7 +573,8 @@ public class JDUtils {
long start = System.currentTimeMillis();
fetchHistoricalOrders();
content.append("刷新两个月,耗时").append((System.currentTimeMillis() - start)).append(" ms\r");
long time = System.currentTimeMillis() - start;
content.append("刷新两个月,耗时: ").append(time).append("ms, ").append((time) / 1000).append(" s\r");
break;
}