From 086e1efc24330a5772609cb031aa61abaa61cef3 Mon Sep 17 00:00:00 2001 From: Pavel_Sorokin Date: Fri, 18 Nov 2022 11:08:22 +0400 Subject: [PATCH 1/4] =?UTF-8?q?=D0=93=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86?= =?UTF-8?q?=D0=B8=D1=8F=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BE=D0=BA.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Liner/Liner/FormMapWithSetShips.cs | 62 +++++++++++++++++-------- Liner/Liner/MapsCollection.cs | 11 ++--- Liner/Liner/SetShipsGeneric.cs | 21 ++++++--- Liner/Liner/ShipNotFoundException.cs | 19 ++++++++ Liner/Liner/StorageOverflowException.cs | 19 ++++++++ 5 files changed, 101 insertions(+), 31 deletions(-) create mode 100644 Liner/Liner/ShipNotFoundException.cs create mode 100644 Liner/Liner/StorageOverflowException.cs diff --git a/Liner/Liner/FormMapWithSetShips.cs b/Liner/Liner/FormMapWithSetShips.cs index e02a7e0..cb883f8 100644 --- a/Liner/Liner/FormMapWithSetShips.cs +++ b/Liner/Liner/FormMapWithSetShips.cs @@ -57,20 +57,30 @@ namespace Liner } private void AddShip(DrawingShip ship) { - if (ListBoxMaps.SelectedIndex == -1) + try { - return; + if (ListBoxMaps.SelectedIndex == -1) + { + return; + } + if (_mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty] + new DrawingObjectShip(ship) != -1) + { + MessageBox.Show("Объект добавлен"); + pictureBox.Image = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + } + else + { + MessageBox.Show("Не удалось добавить объект"); + } } - if (_mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty] + new DrawingObjectShip(ship) != -1) + catch (StorageOverflowException ex) { - MessageBox.Show("Объект добавлен"); - pictureBox.Image = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + MessageBox.Show($"Ошибка хранилище переполнено: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } - else + catch (ArgumentException ex) { - MessageBox.Show("Не удалось добавить объект"); + MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } - } private void ButtonRemoveShip_Click(object sender, EventArgs e) { @@ -87,14 +97,25 @@ namespace Liner return; } int pos = Convert.ToInt32(maskedTextBoxPosition.Text); - if (_mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null) + try { - MessageBox.Show("Объект удален"); - pictureBox.Image = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + if (_mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null) + { + MessageBox.Show("Объект удален"); + pictureBox.Image = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + } + else + { + MessageBox.Show("Не удалось удалить объект"); + } } - else + catch (ShipNotFoundException ex) { - MessageBox.Show("Не удалось удалить объект"); + MessageBox.Show($"Ошибка удаления: {ex.Message}"); + } + catch (Exception ex) + { + MessageBox.Show($"Неизвестная ошибка: {ex.Message}"); } } private void ButtonShowStorage_Click(object sender, EventArgs e) @@ -174,13 +195,15 @@ namespace Liner { if (saveFileDialog.ShowDialog() == DialogResult.OK) { - if (_mapsCollection.SaveData(saveFileDialog.FileName)) + try { + _mapsCollection.SaveData(saveFileDialog.FileName); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + } - else + catch (Exception ex) { - MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show($"Не сохранилось:{ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } @@ -189,14 +212,15 @@ namespace Liner { if (openFileDialog.ShowDialog() == DialogResult.OK) { - if (_mapsCollection.LoadData(openFileDialog.FileName)) + try { + _mapsCollection.LoadData(openFileDialog.FileName); ReloadMaps(); MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); } - else + catch(Exception ex) { - MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show($"Не загрузилось:{ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } diff --git a/Liner/Liner/MapsCollection.cs b/Liner/Liner/MapsCollection.cs index 80106d5..3eb2610 100644 --- a/Liner/Liner/MapsCollection.cs +++ b/Liner/Liner/MapsCollection.cs @@ -44,7 +44,7 @@ namespace Liner return null; } } - public bool SaveData(string filename) + public void SaveData(string filename) { if (File.Exists(filename)) { @@ -58,20 +58,19 @@ namespace Liner sw.Write($"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict, separatorData)}{Environment.NewLine}"); } } - return true; } - public bool LoadData(string filename) + public void LoadData(string filename) { if (!File.Exists(filename)) { - return false; + throw new FileNotFoundException("Файл не найден"); } using (StreamReader sr = new(filename)) { string str = ""; if ((str = sr.ReadLine()) == null || !str.Contains("MapsCollection")) { - return false; + throw new FileFormatException("Формат данных в файле не правильный"); } _mapStorages.Clear(); while ((str = sr.ReadLine()) != null) @@ -95,7 +94,7 @@ namespace Liner _mapStorages[tempElem[0]].LoadData(tempElem[2].Split(separatorData, StringSplitOptions.RemoveEmptyEntries)); } } - return true; + } } diff --git a/Liner/Liner/SetShipsGeneric.cs b/Liner/Liner/SetShipsGeneric.cs index 6e6c3b5..6d682da 100644 --- a/Liner/Liner/SetShipsGeneric.cs +++ b/Liner/Liner/SetShipsGeneric.cs @@ -23,19 +23,28 @@ namespace Liner } public int Insert(T ship, int position) { - if (position < 0 || position > Count || _maxCount == Count) return -1; + if (Count == _maxCount) + { + throw new StorageOverflowException(_maxCount); + } + if (position < 0 || position > _maxCount) return -1; _places.Insert(position, ship); return position; } public T Remove(int position) { - if (position >= Count || position < 0) + if (position < Count || position > 0) { - return null; + if (_places.ElementAt(position) != null) + { + T ship = _places[position]; + _places.RemoveAt(position); + return ship; + } + throw new ShipNotFoundException(position); + } - T ship = _places[position]; - _places.RemoveAt(position); - return ship; + return null; } public T this[int position] { diff --git a/Liner/Liner/ShipNotFoundException.cs b/Liner/Liner/ShipNotFoundException.cs new file mode 100644 index 0000000..63acc0c --- /dev/null +++ b/Liner/Liner/ShipNotFoundException.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace Liner +{ + [Serializable] + internal class ShipNotFoundException: ApplicationException + { + public ShipNotFoundException(int i) : base($"Не найден объект по позиции {i}") { } + public ShipNotFoundException() : base() { } + public ShipNotFoundException(string message) : base(message) { } + public ShipNotFoundException(string message, Exception exception) : base(message, exception) { } + protected ShipNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { } + } +} diff --git a/Liner/Liner/StorageOverflowException.cs b/Liner/Liner/StorageOverflowException.cs new file mode 100644 index 0000000..2f3885f --- /dev/null +++ b/Liner/Liner/StorageOverflowException.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace Liner +{ + [Serializable] + internal class StorageOverflowException: ApplicationException + { + public StorageOverflowException(int count) : base($"В наборе превышено допустимое количество: {count}") { } + public StorageOverflowException():base(){} + public StorageOverflowException(string message):base(message){} + public StorageOverflowException(string message, Exception exception):base(message, exception){} + protected StorageOverflowException(SerializationInfo info, StreamingContext context): base(info, context){} + } +} -- 2.25.1 From c0cdda8b0732f027278229d241a7f61b022c8c96 Mon Sep 17 00:00:00 2001 From: Pavel_Sorokin Date: Fri, 18 Nov 2022 13:00:15 +0400 Subject: [PATCH 2/4] =?UTF-8?q?=D0=9B=D0=BE=D0=B3=D0=B8=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Liner/Liner/FormMapWithSetShips.cs | 29 ++++++++++++++++++++++++++--- Liner/Liner/Liner.csproj | 13 +++++++++++++ Liner/Liner/Program.cs | 27 ++++++++++++++++++++++++++- Liner/Liner/SetShipsGeneric.cs | 13 ++++--------- 4 files changed, 69 insertions(+), 13 deletions(-) diff --git a/Liner/Liner/FormMapWithSetShips.cs b/Liner/Liner/FormMapWithSetShips.cs index cb883f8..6f51468 100644 --- a/Liner/Liner/FormMapWithSetShips.cs +++ b/Liner/Liner/FormMapWithSetShips.cs @@ -1,4 +1,5 @@ -using System; +using Microsoft.Extensions.Logging; +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; @@ -20,9 +21,12 @@ namespace Liner {"Болото",new SwampMap() } }; private readonly MapsCollection _mapsCollection; - public FormMapWithSetShips() + + private ILogger _logger; + public FormMapWithSetShips(ILoggerlogger) { InitializeComponent(); + _logger = logger; _mapsCollection = new MapsCollection(pictureBox.Width, pictureBox.Height); ComboBoxSelectorMap.Items.Clear(); foreach (var elem in _mapDict) @@ -66,19 +70,23 @@ namespace Liner if (_mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty] + new DrawingObjectShip(ship) != -1) { MessageBox.Show("Объект добавлен"); + _logger.LogInformation("Добавлен объект {@Ship}", ship); pictureBox.Image = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); } else { MessageBox.Show("Не удалось добавить объект"); + _logger.LogInformation("Не удалось добавить объект"); } } catch (StorageOverflowException ex) { + _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); } } @@ -99,22 +107,27 @@ namespace Liner int pos = Convert.ToInt32(maskedTextBoxPosition.Text); try { - if (_mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null) + var deletedShip = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos; + if (deletedShip != null) { MessageBox.Show("Объект удален"); + _logger.LogInformation("Из текущей карты удалён объект {@Ship}", deletedShip); pictureBox.Image = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); } else { + _logger.LogInformation("Не удалось удалить объект по позиции {0}. Объект равен null", pos); MessageBox.Show("Не удалось удалить объект"); } } catch (ShipNotFoundException ex) { + _logger.LogWarning("Ошибка удаления: {0}", ex.Message); MessageBox.Show($"Ошибка удаления: {ex.Message}"); } catch (Exception ex) { + _logger.LogWarning("Неизвестная ошибка удаления: {0}", ex.Message); MessageBox.Show($"Неизвестная ошибка: {ex.Message}"); } } @@ -164,19 +177,23 @@ namespace Liner if (ComboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text)) { MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogInformation("При добавлении карты {0}", ComboBoxSelectorMap.SelectedIndex == -1 ? "Не была выбрана карта" : "Не была названа карта"); return; } if (!_mapDict.ContainsKey(ComboBoxSelectorMap.Text)) { MessageBox.Show("Нет такой карты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogInformation("Отсутствует карта с типом {0}", ComboBoxSelectorMap.Text); return; } _mapsCollection.AddMap(textBoxNewMapName.Text, _mapDict[ComboBoxSelectorMap.Text]); ReloadMaps(); + _logger.LogInformation($"Добавлена карта: {textBoxNewMapName.Text}"); } private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e) { pictureBox.Image = _mapsCollection[ListBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet(); + _logger.LogInformation("Осуществлён переход на карту под названием {0}", ListBoxMaps.SelectedItem?.ToString() ?? string.Empty); } private void ButtonDeleteMap_Click(object sender, EventArgs e) { @@ -188,6 +205,7 @@ namespace Liner { _mapsCollection.DelMap(ListBoxMaps.SelectedItem?.ToString() ?? string.Empty); ReloadMaps(); + _logger.LogInformation("Удалена карта {0}", ListBoxMaps.SelectedItem?.ToString() ?? string.Empty); } } @@ -198,12 +216,15 @@ namespace Liner try { _mapsCollection.SaveData(saveFileDialog.FileName); + _logger.LogInformation("Сохранение прошло успешно. Расположение файла: {0}", saveFileDialog.FileName); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { + MessageBox.Show($"Не сохранилось:{ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogWarning("Не удалось сохранить файл '{0}'. Текст ошибки: {1}", saveFileDialog.FileName, ex.Message); } } } @@ -215,11 +236,13 @@ namespace Liner try { _mapsCollection.LoadData(openFileDialog.FileName); + _logger.LogInformation("Загрузка данных из файла '{0}' прошла успешно", openFileDialog.FileName); ReloadMaps(); MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch(Exception ex) { + _logger.LogWarning("Не удалось загрузить файл '{0}'. Текст ошибки: {1}", openFileDialog.FileName, ex.Message); MessageBox.Show($"Не загрузилось:{ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } } diff --git a/Liner/Liner/Liner.csproj b/Liner/Liner/Liner.csproj index 13ee123..5a83827 100644 --- a/Liner/Liner/Liner.csproj +++ b/Liner/Liner/Liner.csproj @@ -8,6 +8,19 @@ enable + + + + + + + + + + + + + True diff --git a/Liner/Liner/Program.cs b/Liner/Liner/Program.cs index 9edbf87..07ff9bc 100644 --- a/Liner/Liner/Program.cs +++ b/Liner/Liner/Program.cs @@ -1,3 +1,8 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Serilog; + namespace Liner { internal static class Program @@ -11,7 +16,27 @@ namespace Liner // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new FormMapWithSetShips()); + var services = new ServiceCollection(); + ConfigureServices(services); + using (ServiceProvider serviceProvider = services.BuildServiceProvider()) + { + Application.Run(serviceProvider.GetRequiredService()); + } + } + private static void ConfigureServices(ServiceCollection services) + { + services.AddSingleton(); + + var serilogLogger = new LoggerConfiguration() + .WriteTo.File("Log.txt") + .CreateLogger(); + + services.AddLogging(builder => + { + builder.SetMinimumLevel(LogLevel.Information); + builder.AddSerilog(logger: serilogLogger, dispose: true); + }); + } } } \ No newline at end of file diff --git a/Liner/Liner/SetShipsGeneric.cs b/Liner/Liner/SetShipsGeneric.cs index 6d682da..13a1be7 100644 --- a/Liner/Liner/SetShipsGeneric.cs +++ b/Liner/Liner/SetShipsGeneric.cs @@ -33,18 +33,13 @@ namespace Liner } public T Remove(int position) { - if (position < Count || position > 0) + if (position >= Count || position < 0) { - if (_places.ElementAt(position) != null) - { - T ship = _places[position]; - _places.RemoveAt(position); - return ship; - } throw new ShipNotFoundException(position); - } - return null; + T ship = _places[position]; + _places.RemoveAt(position); + return ship; } public T this[int position] { -- 2.25.1 From 392a0ee51fef25e05c2a13e732f8177fae4a525f Mon Sep 17 00:00:00 2001 From: Pavel_Sorokin Date: Fri, 18 Nov 2022 13:10:23 +0400 Subject: [PATCH 3/4] =?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 | 2 +- Liner/Liner/Liner.csproj | 1 + Liner/Liner/Program.cs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Liner/Liner/FormMapWithSetShips.cs b/Liner/Liner/FormMapWithSetShips.cs index 6f51468..40b4225 100644 --- a/Liner/Liner/FormMapWithSetShips.cs +++ b/Liner/Liner/FormMapWithSetShips.cs @@ -203,9 +203,9 @@ namespace Liner } if (MessageBox.Show($"Удалить карту {ListBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { + _logger.LogInformation("Удалена карта {0}", ListBoxMaps.SelectedItem?.ToString() ?? string.Empty); _mapsCollection.DelMap(ListBoxMaps.SelectedItem?.ToString() ?? string.Empty); ReloadMaps(); - _logger.LogInformation("Удалена карта {0}", ListBoxMaps.SelectedItem?.ToString() ?? string.Empty); } } diff --git a/Liner/Liner/Liner.csproj b/Liner/Liner/Liner.csproj index 5a83827..37fe1c2 100644 --- a/Liner/Liner/Liner.csproj +++ b/Liner/Liner/Liner.csproj @@ -19,6 +19,7 @@ + diff --git a/Liner/Liner/Program.cs b/Liner/Liner/Program.cs index 07ff9bc..f799e48 100644 --- a/Liner/Liner/Program.cs +++ b/Liner/Liner/Program.cs @@ -28,7 +28,7 @@ namespace Liner services.AddSingleton(); var serilogLogger = new LoggerConfiguration() - .WriteTo.File("Log.txt") + .WriteTo.RollingFile("Logs\\log.txt") .CreateLogger(); services.AddLogging(builder => -- 2.25.1 From 6f2ab62ff2699624b9f9e5f6e7ce8abb27ce4fa2 Mon Sep 17 00:00:00 2001 From: Pavel_Sorokin Date: Wed, 23 Nov 2022 11:08:05 +0400 Subject: [PATCH 4/4] =?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 @@ - -- 2.25.1