修改输出日志展示具体出问题的
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
hang 2025-09-05 11:07:58 +08:00
parent 9669032e6c
commit 7f1232e2ff
1 changed files with 3 additions and 2 deletions

View File

@ -915,7 +915,8 @@ namespace IRaCIS.Core.Application.Service
catch (Exception ex) catch (Exception ex)
{ {
var errorMsg = $"{DateTime.Now}❌ 失败: {ex.Message}"; var errorMsg = $"{DateTime.Now} ❌ 失败: {ex.Message} | InstanceId={item.InstanceId}, Path={item.Path}";
Console.WriteLine(errorMsg); Console.WriteLine(errorMsg);
await File.AppendAllTextAsync(outputErrorFile, errorMsg + Environment.NewLine); await File.AppendAllTextAsync(outputErrorFile, errorMsg + Environment.NewLine);
@ -926,7 +927,7 @@ namespace IRaCIS.Core.Application.Service
double percent = processed * 100.0 / total; double percent = processed * 100.0 / total;
// 每提升 5% 或完成时输出 // 每提升 5% 或完成时输出
if (percent - lastPercent >= 5.0 || processed == total) if (percent - lastPercent >= 2.0 || processed == total)
{ {
lastPercent = percent; lastPercent = percent;
Console.WriteLine($"{DateTime.Now} 进度: {processed}/{total} ({percent:F2}%)"); Console.WriteLine($"{DateTime.Now} 进度: {processed}/{total} ({percent:F2}%)");