From dddbba87daf356b4c561409b886e626742da1308 Mon Sep 17 00:00:00 2001 From: Safgerd Date: Fri, 28 Apr 2023 16:56:34 +0400 Subject: [PATCH] =?UTF-8?q?LabWork02=5FHard:=20=D0=A4=D0=B8=D0=BA=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs b/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs index 9dddf06..55094d6 100644 --- a/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs +++ b/AutomobilePlant/AutomobilePlantBusinessLogic/BusinessLogics/OrderLogic.cs @@ -84,7 +84,7 @@ namespace AutomobilePlantBusinessLogic.BusinessLogics var car = _carStorage.GetElement(new CarSearchModel() { Id = model.CarId }); if (car == null) { - _logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Document not found."); + _logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Car not found."); return false; } if (CheckThenSupplyMany(car, model.Count) == false)