From 8021e8ec78b6d3cbbd45e9e088b8cb503fa26363 Mon Sep 17 00:00:00 2001 From: malimova Date: Sun, 10 Dec 2023 21:38:25 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D0=B8=D1=81=D0=BA=D0=BB=D1=8E=D1=87=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AirBomber/AirBomber/FormPlaneCollection.cs | 4 ++++ AirBomber/AirBomber/PlaneNotFoundException.cs | 2 +- AirBomber/AirBomber/StorageOverflowException.cs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/AirBomber/AirBomber/FormPlaneCollection.cs b/AirBomber/AirBomber/FormPlaneCollection.cs index 2c07129..947e102 100644 --- a/AirBomber/AirBomber/FormPlaneCollection.cs +++ b/AirBomber/AirBomber/FormPlaneCollection.cs @@ -7,6 +7,10 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; +using Microsoft.VisualBasic.Logging; +using AirBomber.Exceptions; +using Serilog; +using Log = Serilog.Log; namespace AirBomber { diff --git a/AirBomber/AirBomber/PlaneNotFoundException.cs b/AirBomber/AirBomber/PlaneNotFoundException.cs index 211f8a9..5dc61a2 100644 --- a/AirBomber/AirBomber/PlaneNotFoundException.cs +++ b/AirBomber/AirBomber/PlaneNotFoundException.cs @@ -5,7 +5,7 @@ using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; -namespace AirBomber +namespace AirBomber.Exceptions { [Serializable] internal class PlaneNotFoundException: ApplicationException diff --git a/AirBomber/AirBomber/StorageOverflowException.cs b/AirBomber/AirBomber/StorageOverflowException.cs index 32e408b..8ae7b29 100644 --- a/AirBomber/AirBomber/StorageOverflowException.cs +++ b/AirBomber/AirBomber/StorageOverflowException.cs @@ -5,7 +5,7 @@ using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; -namespace AirBomber +namespace AirBomber.Exceptions { [Serializable] internal class StorageOverflowException: ApplicationException