kuzzle 2.49.0-beta.1 → 2.49.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -157,9 +157,9 @@ class AccessLoggerWorker {
|
|
|
157
157
|
transports.targets.push({
|
|
158
158
|
level: conf.level || "info",
|
|
159
159
|
options: {
|
|
160
|
-
append: conf.options
|
|
161
|
-
destination: conf.options
|
|
162
|
-
mkdir: conf.options
|
|
160
|
+
append: conf.options?.append ?? true,
|
|
161
|
+
destination: conf.options?.destination ?? "./kuzzle.access.log",
|
|
162
|
+
mkdir: conf.options?.mkdir ?? true,
|
|
163
163
|
},
|
|
164
164
|
target: "pino/file",
|
|
165
165
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kuzzle",
|
|
3
3
|
"author": "The Kuzzle Team <support@kuzzle.io>",
|
|
4
|
-
"version": "2.49.0-beta.
|
|
4
|
+
"version": "2.49.0-beta.2",
|
|
5
5
|
"description": "Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.",
|
|
6
6
|
"bin": "bin/start-kuzzle-server",
|
|
7
7
|
"scripts": {
|