|
@@ -150,7 +150,9 @@ namespace AutoFocusTool
|
|
|
? $"圆心偏移 Y:{circle.OffsetYPct:F0}% X:{circle.OffsetXPct:F0}% 完整:{circle.Complete}"
|
|
? $"圆心偏移 Y:{circle.OffsetYPct:F0}% X:{circle.OffsetXPct:F0}% 完整:{circle.Complete}"
|
|
|
: "未检出well圆";
|
|
: "未检出well圆";
|
|
|
string expPart = exp != null ? $" 曝光信息:{exp}" : "";
|
|
string expPart = exp != null ? $" 曝光信息:{exp}" : "";
|
|
|
- string param = $"Z:{_lastZ} 水平:{_lastH} {circlePart}{expPart}";
|
|
|
|
|
|
|
+ // P2: 不再拼 _lastZ/_lastH——它们仅在 RefreshPositions 时更新,标定过程中是陈旧值,
|
|
|
|
|
+ // 会误导排查(日志会全程显示标定前的旧 Z/水平)。msg 本身已含当前步骤的真实命令 Z。
|
|
|
|
|
+ string param = $"{circlePart}{expPart}";
|
|
|
win.SetCurrentInfo(param, msg);
|
|
win.SetCurrentInfo(param, msg);
|
|
|
AutoFocusTool.Logging.FileLogger.Data("CALIB", $"{msg} | {param}");
|
|
AutoFocusTool.Logging.FileLogger.Data("CALIB", $"{msg} | {param}");
|
|
|
}
|
|
}
|