From dcbed5037f30235fa5d969628e2b8e1646d175c4 Mon Sep 17 00:00:00 2001 From: russell Date: Sat, 27 Apr 2024 21:43:50 +0400 Subject: [PATCH] log & index.cshtml fix --- CarRepairShop/CarRepairShopClientApp/Views/Home/Index.cshtml | 2 +- .../CarRepairShopRestApi/Controllers/MainController.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CarRepairShop/CarRepairShopClientApp/Views/Home/Index.cshtml b/CarRepairShop/CarRepairShopClientApp/Views/Home/Index.cshtml index a0f9d2f..bfefdad 100644 --- a/CarRepairShop/CarRepairShopClientApp/Views/Home/Index.cshtml +++ b/CarRepairShop/CarRepairShopClientApp/Views/Home/Index.cshtml @@ -29,7 +29,7 @@ Номер - Мороженое + Ремонт Дата создания diff --git a/CarRepairShop/CarRepairShopRestApi/Controllers/MainController.cs b/CarRepairShop/CarRepairShopRestApi/Controllers/MainController.cs index f6171d2..bd8b8c3 100644 --- a/CarRepairShop/CarRepairShopRestApi/Controllers/MainController.cs +++ b/CarRepairShop/CarRepairShopRestApi/Controllers/MainController.cs @@ -32,7 +32,7 @@ namespace CarRepairShopRestApi.Controllers } catch (Exception ex) { - _logger.LogError(ex, "Receiving ice cream list error"); + _logger.LogError(ex, "Receiving repair list error"); throw; } } @@ -46,7 +46,7 @@ namespace CarRepairShopRestApi.Controllers } catch (Exception ex) { - _logger.LogError(ex, "Error receiving ice cream by id = {Id}", repairId); + _logger.LogError(ex, "Error receiving reapir by id = {Id}", repairId); throw; } }