Merged PR 99: Updated ReconstructionNotifyService.cs 编译bug解决

Updated ReconstructionNotifyService.cs  编译bug解决
This commit is contained in:
SONG Tian
2026-06-01 09:28:56 +08:00
@@ -61,11 +61,11 @@ namespace XP.Scan.Services
}
catch (SocketException ex)
{
_logger.Error($"重建通知发送失败(Socket) | Reconstruction notify failed: {ex.Message}");
_logger.Error(ex, "重建通知发送失败(Socket) | Reconstruction notify failed: {0}", ex.Message);
}
catch (Exception ex)
{
_logger.Error($"重建通知发送异常 | Reconstruction notify error: {ex.Message}");
_logger.Error(ex, "重建通知发送异常 | Reconstruction notify error: {0}", ex.Message);
}
}
}