Add NLog logging
This commit is contained in:
parent
1db5725314
commit
ce068c174b
@ -27,4 +27,15 @@
|
||||
<Folder Include="MovementStrategy\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
||||
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.5" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="nlog.config">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@ -1,6 +1,7 @@
|
||||
using AirBomber.Exceptions;
|
||||
using AirBomber.Generics;
|
||||
using AirBomber.Rendering;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace AirBomber
|
||||
{
|
||||
@ -8,11 +9,14 @@ namespace AirBomber
|
||||
{
|
||||
private readonly EntitiesGenericStorage _storage;
|
||||
|
||||
public FormEntityCollection()
|
||||
private readonly ILogger _logger;
|
||||
|
||||
public FormEntityCollection(ILogger<FormEntityCollection> Logger)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
_storage = new EntitiesGenericStorage(CollectionPictureBox.Width, CollectionPictureBox.Height);
|
||||
_logger = Logger;
|
||||
}
|
||||
|
||||
private void ReloadObjects()
|
||||
@ -112,6 +116,8 @@ namespace AirBomber
|
||||
|
||||
_storage.AddSet(SetNameTextBox.Text);
|
||||
ReloadObjects();
|
||||
|
||||
_logger.LogInformation($"Добавлен набор: {SetNameTextBox.Text}");
|
||||
}
|
||||
|
||||
private void ButtonRemoveSet_Click(object sender, EventArgs e)
|
||||
@ -119,15 +125,19 @@ namespace AirBomber
|
||||
if (StorageListBox.SelectedIndex == -1)
|
||||
return;
|
||||
|
||||
string SetName = StorageListBox.SelectedItem.ToString() ?? string.Empty;
|
||||
|
||||
if (MessageBox.Show(
|
||||
$"Удалить объект{StorageListBox.SelectedItem}?",
|
||||
$"Удалить объект{SetName}?",
|
||||
"Удаление",
|
||||
MessageBoxButtons.YesNo,
|
||||
MessageBoxIcon.Question
|
||||
) == DialogResult.Yes)
|
||||
{
|
||||
_storage.RemoveSet(StorageListBox.SelectedItem.ToString() ?? string.Empty);
|
||||
_storage.RemoveSet(SetName);
|
||||
ReloadObjects();
|
||||
|
||||
_logger.LogInformation($"Удален набор: {SetName}");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using NLog.Extensions.Logging;
|
||||
using System;
|
||||
|
||||
namespace AirBomber
|
||||
{
|
||||
internal static class Program
|
||||
@ -6,7 +11,25 @@ namespace AirBomber
|
||||
static void Main()
|
||||
{
|
||||
ApplicationConfiguration.Initialize();
|
||||
Application.Run(new FormEntityCollection());
|
||||
|
||||
var services = new ServiceCollection();
|
||||
ConfigureServices(services);
|
||||
|
||||
using (ServiceProvider ServiceProvider = services.BuildServiceProvider())
|
||||
{
|
||||
Application.Run(ServiceProvider.GetRequiredService<FormEntityCollection>());
|
||||
}
|
||||
}
|
||||
|
||||
private static void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
services.AddSingleton<FormEntityCollection>().AddLogging(
|
||||
option =>
|
||||
{
|
||||
option.SetMinimumLevel(LogLevel.Information);
|
||||
option.AddNLog("nlog.config");
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
13
AirBomber/nlog.config
Normal file
13
AirBomber/nlog.config
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
autoReload="true" internalLogLevel="Info">
|
||||
<targets>
|
||||
<target xsi:type="File" name="tofile" fileName="airbomberlog-${shortdate}.log" />
|
||||
</targets>
|
||||
<rules>
|
||||
<logger name="*" minlevel="Debug" writeTo="tofile" />
|
||||
</rules>
|
||||
</nlog>
|
||||
</configuration>
|
Loading…
Reference in New Issue
Block a user