fix(bc): new params shouldn't be overridden

pull/399/head
Kobi Meirson 2022-11-13 16:56:01 +02:00
parent 476a9bcfdf
commit 0451704cd0
No known key found for this signature in database
GPG Key ID: 5D66F732B037CDE1
1 changed files with 1 additions and 1 deletions

View File

@ -81,13 +81,13 @@ const migrateLogging = data => {
} }
data.domains[key].logging = { data.domains[key].logging = {
...perDomainLogging,
accessLogEnabled, accessLogEnabled,
accessLogPath, accessLogPath,
accessLogParameters, accessLogParameters,
errorLogEnabled, errorLogEnabled,
errorLogPath, errorLogPath,
errorLogLevel, errorLogLevel,
...perDomainLogging,
}; };
} }
}; };