From f6e8a0d5e2703dab58c7a09d4c71c134d48a6e41 Mon Sep 17 00:00:00 2001 From: "ashutosh.nehete" Date: Mon, 6 Oct 2025 15:29:56 +0530 Subject: [PATCH] Sloved missing veriable issue --- Marco.Pms.Services/Controllers/DashboardController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marco.Pms.Services/Controllers/DashboardController.cs b/Marco.Pms.Services/Controllers/DashboardController.cs index 4cf27de..335e713 100644 --- a/Marco.Pms.Services/Controllers/DashboardController.cs +++ b/Marco.Pms.Services/Controllers/DashboardController.cs @@ -683,8 +683,8 @@ namespace Marco.Pms.Services.Controllers catch (Exception ex) { _logger.LogError(ex, - "GetExpenseReportByProjects failed. TenantId={TenantId}, StartDate={StartDate}, EndDate={EndDate}", - tenantId, start, end); // [Error Log] + "GetExpenseReportByProjects failed. TenantId={TenantId}", + tenantId); // [Error Log] return StatusCode(500, ApiResponse.ErrorResponse("An error occurred while fetching the expense report.", 500)); // [Error Response] }