From 494bee9b837094edc00626d3ee1649c650d1e708 Mon Sep 17 00:00:00 2001 From: AnnZhimol Date: Tue, 28 Mar 2023 10:30:54 +0400 Subject: [PATCH] Lab 2 hard --- SoftwareInstallation/SoftwareInstallation/FormSellPackage.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SoftwareInstallation/SoftwareInstallation/FormSellPackage.cs b/SoftwareInstallation/SoftwareInstallation/FormSellPackage.cs index 83b7916..0769279 100644 --- a/SoftwareInstallation/SoftwareInstallation/FormSellPackage.cs +++ b/SoftwareInstallation/SoftwareInstallation/FormSellPackage.cs @@ -59,7 +59,7 @@ namespace SoftwareInstallationView return; } - _logger.LogInformation("Product sale."); + _logger.LogInformation("Package sale."); try { @@ -80,7 +80,7 @@ namespace SoftwareInstallationView } catch (Exception ex) { - _logger.LogError(ex, "Product sale error."); + _logger.LogError(ex, "Package sale error."); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } }