From b71ea7d346cfa3ed48d5875aa3ff211cf6b16f0a Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 5 Dec 2025 10:32:11 +0100 Subject: [PATCH] Update log file naming convention in NLog config The `logFileNamePrefix` variable in the `NLog` configuration was updated to use a period (`.`) instead of a hyphen (`-`) as the separator between the date and the application name. Old format: `${shortdate}-Rec.API.Web` New format: `${shortdate}.Rec.API` This change aligns the log file naming convention with a new standard or improves consistency across file naming practices. --- src/ReC.API/appsettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.API/appsettings.json b/src/ReC.API/appsettings.json index 0e756ab..132953d 100644 --- a/src/ReC.API/appsettings.json +++ b/src/ReC.API/appsettings.json @@ -19,7 +19,7 @@ "throwConfigExceptions": true, "variables": { "logDirectory": "E:\\LogFiles\\Digital Data\\Rec.API", - "logFileNamePrefix": "${shortdate}-Rec.API.Web" + "logFileNamePrefix": "${shortdate}.Rec.API" }, "targets": { "infoLogs": {