Updated ReconstructionNotifyService.cs 编译bug解决

This commit is contained in:
SONG Tian
2026-06-01 01:18:06 +00:00
parent 06c39c5ab4
commit 580d61acae
@@ -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);
}
}
}