From 2ee1a80d7dab3fe1e18b71da93272f6b3c1e678b Mon Sep 17 00:00:00 2001 From: Factorino73 Date: Sun, 25 Feb 2024 01:25:56 +0400 Subject: [PATCH] Fix --- AircraftPlant/AircraftPlantView/FormPlane.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AircraftPlant/AircraftPlantView/FormPlane.cs b/AircraftPlant/AircraftPlantView/FormPlane.cs index 2edad4b..cb62d77 100644 --- a/AircraftPlant/AircraftPlantView/FormPlane.cs +++ b/AircraftPlant/AircraftPlantView/FormPlane.cs @@ -155,7 +155,7 @@ namespace AircraftPlantView { try { - _logger.LogInformation("Удаление компонента:{ ComponentName} - { Count}", dataGridView.SelectedRows[0].Cells[1].Value); + _logger.LogInformation("Удаление компонента:{ ComponentName} - { Count}", dataGridView.SelectedRows[0].Cells[1].Value, dataGridView.SelectedRows[0].Cells[2].Value); _planeComponents?.Remove(Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value)); } catch (Exception ex)