diff --git a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs index 184a904..120163d 100644 --- a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs +++ b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/BusinessLogic/CommentLogic.cs @@ -20,7 +20,7 @@ namespace ComputerHardwareStoreBusinessLogic.BusinessLogic public List? ReadList(CommentSearchModel? model) { - _logger.LogInformation("ReadList Comment. Date:{Date}. Id:{Id}", model?.Date, model?.Id); + _logger.LogInformation("ReadList Comment. Id:{Id}", model?.Id); var list = model == null ? _commentStorage.GetFullList() : _commentStorage.GetFilteredList(model); if (list == null) @@ -38,7 +38,7 @@ namespace ComputerHardwareStoreBusinessLogic.BusinessLogic { throw new ArgumentNullException(nameof(model)); } - _logger.LogInformation("ReadElement Comment. Date:{Date}. Id:{ Id}", model.Date, model.Id); + _logger.LogInformation("ReadElement Comment. Id:{ Id}", model.Id); var element = _commentStorage.GetElement(model); if (element == null) { diff --git a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj index 982ae40..47a15a0 100644 --- a/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj +++ b/ComputerHardwareStore/ComputerHardwareStoreBusinessLogic/ComputerHardwareStoreBusinessLogic.csproj @@ -6,12 +6,6 @@ enable - - - - - -