ButtonDeleteMap_Click logging

This commit is contained in:
Nikita Potapov 2022-11-26 23:04:33 +04:00
parent fd8617cbf0
commit 271840c48e

View File

@ -147,7 +147,6 @@ namespace Boats
{
MessageBox.Show($"Неизвестная ошибка: {ex.Message}");
}
}
/// <summary>
/// Вывод набора
@ -243,6 +242,7 @@ namespace Boats
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
_logger.LogInformation($"Удалена карта {listBoxMaps.SelectedItem?.ToString() ?? ""}");
ReloadMaps();
}
}