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.
This commit is contained in:
parent
3764fdaf01
commit
b71ea7d346
@ -19,7 +19,7 @@
|
|||||||
"throwConfigExceptions": true,
|
"throwConfigExceptions": true,
|
||||||
"variables": {
|
"variables": {
|
||||||
"logDirectory": "E:\\LogFiles\\Digital Data\\Rec.API",
|
"logDirectory": "E:\\LogFiles\\Digital Data\\Rec.API",
|
||||||
"logFileNamePrefix": "${shortdate}-Rec.API.Web"
|
"logFileNamePrefix": "${shortdate}.Rec.API"
|
||||||
},
|
},
|
||||||
"targets": {
|
"targets": {
|
||||||
"infoLogs": {
|
"infoLogs": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user