diff --git a/Liner/Liner/FormMapWithSetShips.cs b/Liner/Liner/FormMapWithSetShips.cs index 40b4225..bc0b972 100644 --- a/Liner/Liner/FormMapWithSetShips.cs +++ b/Liner/Liner/FormMapWithSetShips.cs @@ -22,7 +22,7 @@ namespace Liner }; private readonly MapsCollection _mapsCollection; - private ILogger _logger; + private ILogger _logger; public FormMapWithSetShips(ILoggerlogger) { InitializeComponent(); @@ -76,7 +76,7 @@ namespace Liner else { MessageBox.Show("Не удалось добавить объект"); - _logger.LogInformation("Не удалось добавить объект"); + _logger.LogWarning("Не удалось добавить объект"); } } catch (StorageOverflowException ex) @@ -84,11 +84,6 @@ namespace Liner _logger.LogWarning("Ошибка, переполнение хранилища :{0}", ex.Message); MessageBox.Show($"Ошибка хранилище переполнено: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } - catch (ArgumentException ex) - { - _logger.LogWarning("Ошибка добавления: {0}. Объект: {@Ship}", ex.Message, ship); - MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); - } } private void ButtonRemoveShip_Click(object sender, EventArgs e) { @@ -116,7 +111,7 @@ namespace Liner } else { - _logger.LogInformation("Не удалось удалить объект по позиции {0}. Объект равен null", pos); + _logger.LogWarning("Не удалось удалить объект по позиции {0}. Объект равен null", pos); MessageBox.Show("Не удалось удалить объект"); } } @@ -177,13 +172,13 @@ namespace Liner if (ComboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text)) { MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); - _logger.LogInformation("При добавлении карты {0}", ComboBoxSelectorMap.SelectedIndex == -1 ? "Не была выбрана карта" : "Не была названа карта"); + _logger.LogWarning("При добавлении карты {0}", ComboBoxSelectorMap.SelectedIndex == -1 ? "Не была выбрана карта" : "Не была названа карта"); return; } if (!_mapDict.ContainsKey(ComboBoxSelectorMap.Text)) { MessageBox.Show("Нет такой карты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); - _logger.LogInformation("Отсутствует карта с типом {0}", ComboBoxSelectorMap.Text); + _logger.LogWarning("Отсутствует карта с типом {0}", ComboBoxSelectorMap.Text); return; } _mapsCollection.AddMap(textBoxNewMapName.Text, _mapDict[ComboBoxSelectorMap.Text]); diff --git a/Liner/Liner/Liner.csproj b/Liner/Liner/Liner.csproj index 37fe1c2..9e772ab 100644 --- a/Liner/Liner/Liner.csproj +++ b/Liner/Liner/Liner.csproj @@ -15,7 +15,6 @@ -