Небольшие изменения в логировании.

This commit is contained in:
Anastasia 2022-12-08 20:22:52 +04:00
parent 0eab60253a
commit 1a47764b37
2 changed files with 4 additions and 4 deletions

View File

@ -141,7 +141,7 @@ namespace AirplaneWithRadar
else
{
MessageBox.Show("Не удалось добавить объект");
_logger.LogInformation("Не удалось добавить объект");
_logger.LogWarning("Не удалось добавить объект");
}
}
catch (StorageOverflowException ex)

View File

@ -13,9 +13,9 @@ namespace AirplaneWithRadar
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//Application.SetHighDpiMode(HighDpiMode.SystemAware);
//Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
ApplicationConfiguration.Initialize();
var services = new ServiceCollection();
ConfigureServices(services);