diff --git a/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs b/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs index 6431470..079c3fa 100644 --- a/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs +++ b/ProjectCruiser/CollectionGenericObjects/AbstractCompany.cs @@ -1,4 +1,5 @@ using ProjectCruiser.Drawnings; +using ProjectCruiser.Exceptions; namespace ProjectCruiser.CollectionGenericObjects { @@ -35,7 +36,7 @@ namespace ProjectCruiser.CollectionGenericObjects /// /// Вычисление максимального количества элементов, который можно разместить в окне /// - private int GetMaxCount => _pictureWidth * _pictureHeight / (_placeSizeWidth * _placeSizeHeight); + private int GetMaxCount => (_pictureWidth / _placeSizeWidth) * (_pictureHeight / _placeSizeHeight); /// /// Конструктор @@ -96,8 +97,15 @@ namespace ProjectCruiser.CollectionGenericObjects SetObjectsPosition(); for (int i = 0; i < (_collection?.Count ?? 0); ++i) { - DrawningCruiser? obj = _collection?.Get(i); - obj?.DrawTransport(graphics); + try + { + DrawningCruiser? obj = _collection?.Get(i); + obj?.DrawTransport(graphics); + } + catch (ObjectNotFoundException e) + { } + catch (PositionOutOfCollectionException e) + { } } return bitmap; } diff --git a/ProjectCruiser/CollectionGenericObjects/CruiserDockingService.cs b/ProjectCruiser/CollectionGenericObjects/CruiserDockingService.cs index abf63a4..7fac20c 100644 --- a/ProjectCruiser/CollectionGenericObjects/CruiserDockingService.cs +++ b/ProjectCruiser/CollectionGenericObjects/CruiserDockingService.cs @@ -1,4 +1,5 @@ using ProjectCruiser.Drawnings; +using ProjectCruiser.Exceptions; namespace ProjectCruiser.CollectionGenericObjects { @@ -41,11 +42,14 @@ namespace ProjectCruiser.CollectionGenericObjects for (int i = 0; i < (_collection?.Count ?? 0); i++) { - if (_collection.Get(i) != null) + + try { _collection.Get(i).SetPictureSize(_pictureWidth, _pictureHeight); _collection.Get(i).SetPosition(_placeSizeWidth * curWidth + 10, curHeight * _placeSizeHeight + 10); } + catch (ObjectNotFoundException) { } + catch(PositionOutOfCollectionException e) { } if (curWidth < width - 1) curWidth++; diff --git a/ProjectCruiser/CollectionGenericObjects/ListGenericObjects.cs b/ProjectCruiser/CollectionGenericObjects/ListGenericObjects.cs index 31863d1..b905497 100644 --- a/ProjectCruiser/CollectionGenericObjects/ListGenericObjects.cs +++ b/ProjectCruiser/CollectionGenericObjects/ListGenericObjects.cs @@ -1,4 +1,6 @@ -namespace ProjectCruiser.CollectionGenericObjects +using ProjectCruiser.Exceptions; + +namespace ProjectCruiser.CollectionGenericObjects { /// /// Параметризованный набор объектов @@ -40,15 +42,17 @@ public T? Get(int position) { // TODO проверка позиции - if (position >= Count || position < 0) return null; + // TODO выброc позиций, если выход за границы массива + if (position >= Count || position < 0) throw new PositionOutOfCollectionException(position); return _collection[position]; } public int Insert(T obj) { // TODO проверка, что не превышено максимальное количество элементов + // TODO выбром позиций, если переполнение // TODO вставка в конец набора - if (Count == _maxCount) return -1; + if (Count == _maxCount) throw new CollectionOverflowException(Count); _collection.Add(obj); return Count; } @@ -58,8 +62,8 @@ // TODO проверка, что не превышено максимальное количество элементов // TODO проверка позиции // TODO вставка по позиции - if (Count == _maxCount) return -1; - if (position >= Count || position < 0) return -1; + if (Count == _maxCount) throw new CollectionOverflowException(Count); + if (position >= Count || position < 0) throw new PositionOutOfCollectionException(position); _collection.Insert(position, obj); return position; @@ -69,7 +73,8 @@ { // TODO проверка позиции // TODO удаление объекта из списка - if (position >= Count || position < 0) return null; + // TODO выбром позиций, если выход за границы массива + if (position >= _collection.Count || position < 0) throw new PositionOutOfCollectionException(position); T obj = _collection[position]; _collection.RemoveAt(position); return obj; diff --git a/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs b/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs index d256937..b428c38 100644 --- a/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs +++ b/ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs @@ -1,4 +1,4 @@ -using ProjectCruiser.Drawnings; +using ProjectCruiser.Exceptions; namespace ProjectCruiser.CollectionGenericObjects { @@ -48,26 +48,30 @@ namespace ProjectCruiser.CollectionGenericObjects public T? Get(int position) { // TODO проверка позиции - if (position >= _collection.Length || position < 0) - { return null; } + // TODO выбром позиций, если выход за границы массива + // TODO выбром позиций, если объект пустой + if (position < 0 || position >= Count) throw new PositionOutOfCollectionException(position); + if (_collection[position] == null) throw new ObjectNotFoundException(position); return _collection[position]; } public int Insert(T obj) { // TODO вставка в свободное место набора + // TODO выброc позиций, если переполнение int index = 0; - while (index < _collection.Length) + while (index < Count && _collection[index] != null) { - if (_collection[index] == null) - { - _collection[index] = obj; - return index; - } - index++; } - return -1; + + if (index < Count) + { + _collection[index] = obj; + return index; + } + + throw new CollectionOverflowException(Count); } public int Insert(T obj, int position) @@ -77,45 +81,59 @@ namespace ProjectCruiser.CollectionGenericObjects // ищется свободное место после этой позиции и идет вставка туда // если нет после, ищем до // TODO вставка - if (position >= _collection.Length || position < 0) - { return -1; } + // TODO выбром позиций, если переполнение + // TODO выбром позиций, если выход за границы массива + if (position < 0 || position >= Count) throw new PositionOutOfCollectionException(position); - if (_collection[position] == null) + if (_collection[position] != null) { - _collection[position] = obj; - return position; - } - int index; - - for (index = position + 1; index < _collection.Length; ++index) - { - if (_collection[index] == null) + bool pushed = false; + for (int index = position + 1; index < Count; index++) { - _collection[position] = obj; - return position; + if (_collection[index] == null) + { + position = index; + pushed = true; + break; + } + } + + if (!pushed) + { + for (int index = position - 1; index >= 0; index--) + { + if (_collection[index] == null) + { + position = index; + pushed = true; + break; + } + } + } + + if (!pushed) + { + throw new CollectionOverflowException(Count); } } - for (index = position - 1; index >= 0; --index) - { - if (_collection[index] == null) - { - _collection[position] = obj; - return position; - } - } - return -1; + _collection[position] = obj; + return position; } public T Remove(int position) { // TODO проверка позиции // TODO удаление объекта из массива, присвоив элементу массива значение null - if (position >= _collection.Length || position < 0) - { return null; } - T obj = _collection[position]; + // TODO выбром позиций, если выход за границы массива + // TODO выбром позиций, если объект пустой + if (position < 0 || position >= Count) throw new PositionOutOfCollectionException(position); + + if (_collection[position] == null) throw new ObjectNotFoundException(position); + + T? temp = _collection[position]; _collection[position] = null; - return obj; + return temp; } public IEnumerable GetItems() diff --git a/ProjectCruiser/CollectionGenericObjects/StorageCollection.cs b/ProjectCruiser/CollectionGenericObjects/StorageCollection.cs index 6bb2401..799e711 100644 --- a/ProjectCruiser/CollectionGenericObjects/StorageCollection.cs +++ b/ProjectCruiser/CollectionGenericObjects/StorageCollection.cs @@ -1,4 +1,5 @@ using ProjectCruiser.Drawnings; +using ProjectCruiser.Exceptions; using System.Text; namespace ProjectCruiser.CollectionGenericObjects @@ -89,82 +90,80 @@ namespace ProjectCruiser.CollectionGenericObjects } /// - /// Сохранение информации по автомобилям в хранилище в файл + /// Сохранение информации по самолетам в хранилище в файл /// /// Путь и имя файла /// true - сохранение прошло успешно, false - ошибка при сохранении данных - public bool SaveData(string filename) + public void SaveData(string filename) { if (_storages.Count == 0) { - return false; + throw new Exception("В хранилище отсутствуют коллекции для сохранения"); } + + if (File.Exists(filename)) { File.Delete(filename); } - using (StreamWriter writer = new StreamWriter(filename)) + + using FileStream fs = new(filename, FileMode.Create); + using StreamWriter streamWriter = new StreamWriter(fs); + streamWriter.Write(_collectionKey); + + foreach (KeyValuePair> value in _storages) { - writer.Write(_collectionKey); - foreach (KeyValuePair> value in _storages) + streamWriter.Write(Environment.NewLine); + + if (value.Value.Count == 0) { - StringBuilder sb = new(); - sb.Append(Environment.NewLine); - // не сохраняем пустые коллекции - if (value.Value.Count == 0) + continue; + } + + streamWriter.Write(value.Key); + streamWriter.Write(_separatorForKeyValue); + streamWriter.Write(value.Value.GetCollectionType); + streamWriter.Write(_separatorForKeyValue); + streamWriter.Write(value.Value.MaxCount); + streamWriter.Write(_separatorForKeyValue); + + + foreach (T? item in value.Value.GetItems()) + { + string data = item?.GetDataForSave() ?? string.Empty; + if (string.IsNullOrEmpty(data)) { continue; } - sb.Append(value.Key); - sb.Append(_separatorForKeyValue); - sb.Append(value.Value.GetCollectionType); - sb.Append(_separatorForKeyValue); - sb.Append(value.Value.MaxCount); - sb.Append(_separatorForKeyValue); - foreach (T? item in value.Value.GetItems()) - { - string data = item?.GetDataForSave() ?? string.Empty; - if (string.IsNullOrEmpty(data)) - { - continue; - } - sb.Append(data); - sb.Append(_separatorItems); - } - writer.Write(sb); + + streamWriter.Write(data); + streamWriter.Write(_separatorItems); + } } - return true; } - /// - /// Загрузка информации по автомобилям в хранилище из файла + /// Загрузка информации по кораблям в хранилище из файла /// - /// Путь и имя файла - /// true - загрузка прошла успешно, false - ошибка при загрузке данных - public bool LoadData(string filename) + /// + public void LoadData(string filename) { if (!File.Exists(filename)) { - return false; + throw new FileNotFoundException("Файл не существует"); } - using (StreamReader fs = File.OpenText(filename)) + + using (StreamReader sr = new StreamReader(filename)) { - string str = fs.ReadLine(); - if (str == null || str.Length == 0) - { - return false; - } - if (!str.StartsWith(_collectionKey)) - { - return false; - } + string? str; + str = sr.ReadLine(); + if (str != _collectionKey.ToString()) + throw new FormatException("В файле неверные данные"); _storages.Clear(); - string strs = ""; - while ((strs = fs.ReadLine()) != null) + while ((str = sr.ReadLine()) != null) { - string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries); + string[] record = str.Split(_separatorForKeyValue); if (record.Length != 4) { continue; @@ -173,24 +172,31 @@ namespace ProjectCruiser.CollectionGenericObjects ICollectionGenericObjects? collection = StorageCollection.CreateCollection(collectionType); if (collection == null) { - return false; + throw new InvalidOperationException("Не удалось определить тип коллекции:" + record[1]); } + collection.MaxCount = Convert.ToInt32(record[2]); + string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries); foreach (string elem in set) { - if (elem?.CreateDrawningCruiser() is T cruiser) + if (elem?.CreateDrawningCruiser() is T aircraft) { - if (collection.Insert(cruiser) == -1) + try { - return false; + if (collection.Insert(aircraft) == -1) + { + throw new InvalidOperationException("Объект не удалось добавить в коллекцию: " + record[3]); + } + } + catch (CollectionOverflowException ex) + { + throw new CollectionOverflowException("Коллекция переполнена", ex); } } } _storages.Add(record[0], collection); } - return true; - } } diff --git a/ProjectCruiser/Exceptions/CollectionOverflowException.cs b/ProjectCruiser/Exceptions/CollectionOverflowException.cs new file mode 100644 index 0000000..3027976 --- /dev/null +++ b/ProjectCruiser/Exceptions/CollectionOverflowException.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectCruiser.Exceptions; + +/// +/// Класс, описывающий ошибку переполнения коллекции +/// +[Serializable] +internal class CollectionOverflowException : ApplicationException +{ + public CollectionOverflowException(int count) : base("В коллекции превышено допустимое количество: " + count) { } + + public CollectionOverflowException() : base() { } + + public CollectionOverflowException(string message) : base(message) { } + + public CollectionOverflowException(string message, Exception exception) : base(message, exception) { } + + protected CollectionOverflowException(SerializationInfo info, StreamingContext contex) : base(info, contex) { } +} diff --git a/ProjectCruiser/Exceptions/ObjectNotFoundException.cs b/ProjectCruiser/Exceptions/ObjectNotFoundException.cs new file mode 100644 index 0000000..0d20713 --- /dev/null +++ b/ProjectCruiser/Exceptions/ObjectNotFoundException.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectCruiser.Exceptions; + +/// +/// Класс, описывающий ошибку, что по указанной позиции нет элемента +/// +[Serializable] +internal class ObjectNotFoundException : ApplicationException +{ + public ObjectNotFoundException(int i) : base("Не найден объект по позиции " + i) { } + + public ObjectNotFoundException() : base() { } + + public ObjectNotFoundException(string message) : base(message) { } + + public ObjectNotFoundException(string message, Exception exception) : base(message, exception) { } + + protected ObjectNotFoundException(SerializationInfo info, StreamingContext contex) : base(info, contex) { } +} + + diff --git a/ProjectCruiser/Exceptions/PositionOutOfCollectionException.cs b/ProjectCruiser/Exceptions/PositionOutOfCollectionException.cs new file mode 100644 index 0000000..7f6441c --- /dev/null +++ b/ProjectCruiser/Exceptions/PositionOutOfCollectionException.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectCruiser.Exceptions; + +/// +/// Класс, описывающий ошибку выхода за границы коллекции +/// +[Serializable] +internal class PositionOutOfCollectionException : ApplicationException +{ + public PositionOutOfCollectionException(int i) : base("Выход за границы коллекции.Позиция " + i) { } + + public PositionOutOfCollectionException() : base() { } + + public PositionOutOfCollectionException(string message) : base(message) { } + + public PositionOutOfCollectionException(string message, Exception exception) : base(message, exception) { } + + protected PositionOutOfCollectionException(SerializationInfo info, StreamingContext contex) : base(info, contex) { } +} + diff --git a/ProjectCruiser/FormCruisersCollection.cs b/ProjectCruiser/FormCruisersCollection.cs index 0779cc5..0b1d358 100644 --- a/ProjectCruiser/FormCruisersCollection.cs +++ b/ProjectCruiser/FormCruisersCollection.cs @@ -1,4 +1,5 @@ -using ProjectCruiser.CollectionGenericObjects; +using Microsoft.Extensions.Logging; +using ProjectCruiser.CollectionGenericObjects; using ProjectCruiser.Drawnings; namespace ProjectCruiser @@ -15,13 +16,19 @@ namespace ProjectCruiser /// private AbstractCompany? _company = null; + /// + /// Логер + /// + private readonly ILogger _logger; + /// /// Конструктор /// - public FormCruisersCollection() + public FormCruisersCollection(ILogger logger) { InitializeComponent(); _storageCollection = new(); + _logger = logger; } /// @@ -34,6 +41,11 @@ namespace ProjectCruiser panelCompanyTools.Enabled = false; } + /// + /// добавление крейсера + /// + /// + /// private void ButtonAddCruiser_Click(object sender, EventArgs e) { FormCruiserConfing form = new(); @@ -53,15 +65,18 @@ namespace ProjectCruiser { return; } - - if (_company + cruiser != -1) + try { + var res = _company + cruiser; MessageBox.Show("Объект добавлен"); + _logger.LogInformation($"Объект добавлен под индексом {res}"); pictureBoxCruiser.Image = _company.Show(); } - else + catch (Exception ex) { - MessageBox.Show("Не удалось добавить объект"); + MessageBox.Show($"Объект не добавлен: {ex.Message}", "Результат", MessageBoxButtons.OK, + MessageBoxIcon.Error); + _logger.LogError($"Ошибка: {ex.Message}", ex.Message); } } @@ -82,14 +97,18 @@ namespace ProjectCruiser return; } int pos = Convert.ToInt32(maskedTextBoxPosision.Text); - if (_company - pos != null) + try { - MessageBox.Show("объект удален"); + var res = _company - pos; + MessageBox.Show("Объект удален"); + _logger.LogInformation($"Объект удален под индексом {pos}"); pictureBoxCruiser.Image = _company.Show(); } - else + catch (Exception ex) { - MessageBox.Show("не удалось удалить объект"); + MessageBox.Show(ex.Message, "Не удалось удалить объект", + MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogError($"Ошибка: {ex.Message}", ex.Message); } } @@ -142,8 +161,7 @@ namespace ProjectCruiser { if (string.IsNullOrEmpty(textBoxCollectionName.Text) || (!radioButtonList.Checked && !radioButtonMassive.Checked)) { - MessageBox.Show("Не все данные заполнены", "Ошибка", - MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } CollectionType collectionType = CollectionType.None; @@ -155,8 +173,18 @@ namespace ProjectCruiser { collectionType = CollectionType.List; } - _storageCollection.AddCollection(textBoxCollectionName.Text, collectionType); - RerfreshListBoxItems(); + + try + { + _storageCollection.AddCollection(textBoxCollectionName.Text, collectionType); + _logger.LogInformation("Добавление коллекции"); + RerfreshListBoxItems(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogError($"Ошибка: {ex.Message}", ex.Message); + } } /// @@ -176,6 +204,7 @@ namespace ProjectCruiser return; } _storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString()); + _logger.LogInformation("Коллекция удалена"); RerfreshListBoxItems(); } @@ -196,7 +225,7 @@ namespace ProjectCruiser } /// - /// + /// Создание компании /// /// /// @@ -207,6 +236,7 @@ namespace ProjectCruiser MessageBox.Show("Коллекция не выбрана"); return; } + ICollectionGenericObjects? collection = _storageCollection[listBoxCollection.SelectedItem.ToString() ?? string.Empty]; if (collection == null) @@ -214,15 +244,16 @@ namespace ProjectCruiser MessageBox.Show("Коллекция не проинициализирована"); return; } + switch (comboBoxSelectorCompany.Text) { case "Хранилище": _company = new CruiserDockingService(pictureBoxCruiser.Width, pictureBoxCruiser.Height, collection); + _logger.LogInformation("Компания создана"); break; } panelCompanyTools.Enabled = true; - } /// @@ -234,13 +265,16 @@ namespace ProjectCruiser { if (saveFileDialog.ShowDialog() == DialogResult.OK) { - if (_storageCollection.SaveData(saveFileDialog.FileName)) + try { + _storageCollection.SaveData(saveFileDialog.FileName); MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + _logger.LogInformation("Сохранение в файл: {filename}", saveFileDialog.FileName); } - else + catch (Exception ex) { - MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogError("Ошибка: {Message}", ex.Message); } } } @@ -254,14 +288,17 @@ namespace ProjectCruiser { if (openFileDialog.ShowDialog() == DialogResult.OK) { - if (_storageCollection.LoadData(openFileDialog.FileName)) + try { - MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + _storageCollection.LoadData(openFileDialog.FileName); RerfreshListBoxItems(); + MessageBox.Show("Загрузка прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + _logger.LogInformation("Загрузка из файла: {filename}", openFileDialog.FileName); } - else + catch (Exception ex) { - MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("Загрузка не выполнена", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + _logger.LogError("Ошибка: {Message}", ex.Message); } } } diff --git a/ProjectCruiser/Program.cs b/ProjectCruiser/Program.cs index 812529b..300ce3c 100644 --- a/ProjectCruiser/Program.cs +++ b/ProjectCruiser/Program.cs @@ -1,3 +1,8 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Serilog; + namespace ProjectCruiser { internal static class Program @@ -10,7 +15,31 @@ namespace ProjectCruiser { // To customize application configuration such as set high DPI settings or default font, see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new FormCruisersCollection()); + ServiceCollection services = new(); + ConfigureServices(services); + using ServiceProvider serviceProvider = services.BuildServiceProvider(); + Application.Run(serviceProvider.GetRequiredService()); } + + private static void ConfigureServices(ServiceCollection services) + { + services.AddSingleton().AddLogging(option => + { + string[] path = Directory.GetCurrentDirectory().Split('\\'); + string pathNeed = ""; + for (int i = 0; i < path.Length - 3; i++) + { + pathNeed += path[i] + "\\"; + } + + var configuration = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()) + .AddJsonFile(path: $"{pathNeed}serilogConfig.json", optional: false, reloadOnChange: true) + .Build(); + var logger = new LoggerConfiguration().ReadFrom.Configuration(configuration).CreateLogger(); + option.SetMinimumLevel(LogLevel.Information); + option.AddSerilog(logger); + }); + } + } } \ No newline at end of file diff --git a/ProjectCruiser/ProjectCruiser.csproj b/ProjectCruiser/ProjectCruiser.csproj index 244387d..0280420 100644 --- a/ProjectCruiser/ProjectCruiser.csproj +++ b/ProjectCruiser/ProjectCruiser.csproj @@ -8,6 +8,17 @@ enable + + + + + + + + + + + True @@ -23,4 +34,13 @@ + + + Always + + + Always + + + \ No newline at end of file diff --git a/ProjectCruiser/nlog.config b/ProjectCruiser/nlog.config new file mode 100644 index 0000000..aef17e8 --- /dev/null +++ b/ProjectCruiser/nlog.config @@ -0,0 +1,14 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/ProjectCruiser/serilogConfig.json b/ProjectCruiser/serilogConfig.json new file mode 100644 index 0000000..9ec09e6 --- /dev/null +++ b/ProjectCruiser/serilogConfig.json @@ -0,0 +1,20 @@ +{ + "Serilog": { + "Using": [ "Serilog.Sinks.File" ], + "MinimumLevel": "Information", + "WriteTo": [ + { + "Name": "File", + "Args": { + "path": "Logs/log_.log", + "rollingInterval": "Day", + "outputTemplate": "[{Timestamp:HH:mm:ss.fff}]{Level:u4}: {Message:lj}{NewLine}{Exception}" + } + } + ], + "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ], + "Properties": { + "Application": "cruiser" + } + } +} \ No newline at end of file