From 6f2ab62ff2699624b9f9e5f6e7ce8abb27ce4fa2 Mon Sep 17 00:00:00 2001 From: Pavel_Sorokin Date: Wed, 23 Nov 2022 11:08:05 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C=D1=88?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Liner/Liner/FormMapWithSetShips.cs | 15 +++++---------- Liner/Liner/Liner.csproj | 1 - 2 files changed, 5 insertions(+), 11 deletions(-) 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 @@ -