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)