.
This commit is contained in:
parent
01d98db116
commit
beb635889b
@ -151,12 +151,12 @@ namespace WinFormsApp1
|
|||||||
if (deletedTraktor != null)
|
if (deletedTraktor != null)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Объект удален");
|
MessageBox.Show("Объект удален");
|
||||||
_logger.LogInformation("Из текущей карты удален объект {@ship}", deletedTraktor);
|
_logger.LogInformation("Из текущей карты удален объект {@traktor}", deletedTraktor);
|
||||||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_logger.LogInformation("Не удалось добавить объект по позиции {0} равен null", pos);
|
_logger.LogWarning("Не удалось добавить объект по позиции {0} равен null", pos);
|
||||||
MessageBox.Show("Не удалось удалить объект");
|
MessageBox.Show("Не удалось удалить объект");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -165,7 +165,7 @@ namespace WinFormsApp1
|
|||||||
_logger.LogWarning("Ошибка удаления: {0}", ex.Message);
|
_logger.LogWarning("Ошибка удаления: {0}", ex.Message);
|
||||||
MessageBox.Show($"Ошибка удаления: {ex.Message}");
|
MessageBox.Show($"Ошибка удаления: {ex.Message}");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (ArgumentException ex)
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Неизвестная ошибка удаления: {0}", ex.Message);
|
_logger.LogWarning("Неизвестная ошибка удаления: {0}", ex.Message);
|
||||||
MessageBox.Show($"Неизвестная ошибка: {ex.Message}");
|
MessageBox.Show($"Неизвестная ошибка: {ex.Message}");
|
||||||
|
Loading…
Reference in New Issue
Block a user