log & index.cshtml fix

This commit is contained in:
russell 2024-04-27 21:43:50 +04:00
parent c85b83dbb5
commit dcbed5037f
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@
Номер Номер
</th> </th>
<th> <th>
Мороженое Ремонт
</th> </th>
<th> <th>
Дата создания Дата создания

View File

@ -32,7 +32,7 @@ namespace CarRepairShopRestApi.Controllers
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Receiving ice cream list error"); _logger.LogError(ex, "Receiving repair list error");
throw; throw;
} }
} }
@ -46,7 +46,7 @@ namespace CarRepairShopRestApi.Controllers
} }
catch (Exception ex) 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; throw;
} }
} }