@kalisio/kdk 2.6.5 → 2.6.6
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.
- package/core/client/directives/v-drop-file.js +6 -6
- package/core/client/utils/utils.shapes.js +8 -1
- package/package.json +1 -1
- package/test/api/core/test-log-2026-03-10.log +60 -0
- package/test/api/map/test-log-2026-03-10.log +56 -0
- package/test/api/core/test-log-2025-07-31.log +0 -15
- package/test/api/core/test-log-2025-10-03.log +0 -18
- package/test/api/core/test-log-2025-11-10.log +0 -0
- package/test/api/core/test-log-2025-11-12.log +0 -117
- package/test/api/core/test-log-2025-11-27.log +0 -0
- package/test/api/core/test-log-2025-11-28.log +0 -17
- package/test/api/core/test-log-2025-12-09.log +0 -148
- package/test/api/core/test-log-2025-12-17.log +0 -58
- package/test/api/core/test-log-2026-01-29.log +0 -17
- package/test/api/core/test-log-2026-03-26.log +0 -0
- package/test/api/map/test-log-2025-07-23.log +0 -1
- package/test/api/map/test-log-2025-11-28.log +0 -33
- package/test/api/map/test-log-2025-12-10.log +0 -2
- package/test/api/map/test-log-2026-01-06.log +0 -26
|
@@ -72,9 +72,9 @@ export const vDropFile = {
|
|
|
72
72
|
message = i18n.tc('errors.MAX_FILES_REACHED', el.__state.maxFiles)
|
|
73
73
|
} else {
|
|
74
74
|
for (const item of items) {
|
|
75
|
-
if (item.kind === 'file' && _.includes(el.__state.acceptedTypes, item.type)) acceptedItems.push(item)
|
|
75
|
+
if (item.kind === 'file' && (!item.type || _.includes(el.__state.acceptedTypes, item.type))) acceptedItems.push(item)
|
|
76
76
|
else rejectedItems.push(item)
|
|
77
|
-
}
|
|
77
|
+
}
|
|
78
78
|
if (_.isEmpty(acceptedItems)) {
|
|
79
79
|
color = colors.getPaletteColor('negative')
|
|
80
80
|
message = i18n.tc('directives.ALL_FILES_ARE_UNSUPPORTED', rejectedItems.length)
|
|
@@ -96,7 +96,7 @@ export const vDropFile = {
|
|
|
96
96
|
overlayBox.style.borderColor = color
|
|
97
97
|
overlayBox.style.color = 'white'
|
|
98
98
|
overlayBox.style.textShadow = '-2px -2px 0 black, 2px -2px 0 black, -2px 2px 0 black, 2px 2px 0 black'
|
|
99
|
-
overlayBox.style.padding = '20px
|
|
99
|
+
overlayBox.style.padding = '20px'
|
|
100
100
|
// show the overlay
|
|
101
101
|
dragCounter++
|
|
102
102
|
showOverlay()
|
|
@@ -115,7 +115,7 @@ export const vDropFile = {
|
|
|
115
115
|
hideOverlay()
|
|
116
116
|
if (!canDrop) return
|
|
117
117
|
const files = Array.from(e.dataTransfer.files)
|
|
118
|
-
const acceptedFiles = Reader.filter(files)
|
|
118
|
+
const acceptedFiles = Reader.filter(files)
|
|
119
119
|
if (el.__state.maxTotalSize && _.size(acceptedFiles) > 1) {
|
|
120
120
|
let totalSize = _.reduce(acceptedFiles, (size, file) => {
|
|
121
121
|
size += file.files[0].size
|
|
@@ -138,7 +138,7 @@ export const vDropFile = {
|
|
|
138
138
|
await el.__state.dropCallback(content)
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
|
-
|
|
141
|
+
|
|
142
142
|
el.__handlers = { onDragEnter, onDragOver, onDragLeave, onDrop }
|
|
143
143
|
el.addEventListener('dragenter', onDragEnter)
|
|
144
144
|
el.addEventListener('dragover', onDragOver)
|
|
@@ -154,7 +154,7 @@ export const vDropFile = {
|
|
|
154
154
|
acceptedTypes: _.get(binding.value, 'mimeTypes'),
|
|
155
155
|
maxFiles: _.get(binding.value, 'maxFiles'),
|
|
156
156
|
maxFileSize: _.get(binding.value, 'maxFileSize'),
|
|
157
|
-
maxTotalSize: _.get(binding.value, 'maxTotalSize'),
|
|
157
|
+
maxTotalSize: _.get(binding.value, 'maxTotalSize'),
|
|
158
158
|
fontSize: _.get(binding.value, 'fontSize', '2rem'),
|
|
159
159
|
enabled: _.get(binding.value, 'enabled', true)
|
|
160
160
|
}
|
|
@@ -220,7 +220,7 @@ export function createShape (options) {
|
|
|
220
220
|
// Render icon
|
|
221
221
|
let iconTag = ''
|
|
222
222
|
if (options.icon) {
|
|
223
|
-
if (!_.isNil(options.icon.classes) || !_.isNil(options.icon.url)) {
|
|
223
|
+
if (!_.isNil(options.icon.classes) || !_.isNil(options.icon.url) || !_.isNil(options.icon.symbol)) {
|
|
224
224
|
if (!_.isEmpty(options.icon.classes) || !_.isEmpty(options.icon.url)) {
|
|
225
225
|
let specificStyle = ''
|
|
226
226
|
if (options.icon.url) {
|
|
@@ -242,6 +242,13 @@ export function createShape (options) {
|
|
|
242
242
|
const rotation = options.icon.rotation || _.get(shape, 'icon.rotation', 0)
|
|
243
243
|
iconTag += `style="position: absolute; top: 50%; left: 50%; transform: translate(${translation[0]},${translation[1]}) rotate(${rotation}deg); opacity: ${opacity}; ${specificStyle}"`
|
|
244
244
|
iconTag += '/>'
|
|
245
|
+
} else {
|
|
246
|
+
let iconSize = options.icon.size ? getSize(options.icon.size) : size
|
|
247
|
+
const color = getHtmlColor(options.icon.color, defaultColor)
|
|
248
|
+
const opacity = options.icon.opacity || 1
|
|
249
|
+
const translation = options.icon.translation || _.get(shape, 'icon.translation', ['-50%', '-50%'])
|
|
250
|
+
const rotation = options.icon.rotation || _.get(shape, 'icon.rotation', 0)
|
|
251
|
+
iconTag = `<svg width=${iconSize.width} height=${iconSize.height} style="position: absolute; top: 50%; left: 50%; transform: translate(${translation[0]},${translation[1]}) rotate(${rotation}deg); opacity: ${opacity}" fill="${color}"><use href="${options.icon.symbol}"></svg>`
|
|
245
252
|
}
|
|
246
253
|
} else {
|
|
247
254
|
logger.warn(`[KDK] icon must contain either the 'classes' property or the 'url' property`)
|
package/package.json
CHANGED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
2
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
3
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
4
|
+
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
5
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
6
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
7
|
+
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
8
|
+
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
9
|
+
{"level":"info","message":"This is a log test"}
|
|
10
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
11
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
12
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
13
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
14
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
15
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
16
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
17
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
18
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
19
|
+
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
20
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
21
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
22
|
+
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
23
|
+
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
24
|
+
{"level":"info","message":"This is a log test"}
|
|
25
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
26
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
27
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
28
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
29
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
30
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
31
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
32
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
33
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
34
|
+
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
35
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
36
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
37
|
+
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
38
|
+
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
39
|
+
{"level":"info","message":"This is a log test"}
|
|
40
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
41
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
42
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
43
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
44
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
45
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
46
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
47
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
48
|
+
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
49
|
+
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
50
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
51
|
+
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
52
|
+
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
53
|
+
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
54
|
+
{"level":"info","message":"This is a log test"}
|
|
55
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
56
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
57
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
58
|
+
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
59
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
60
|
+
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{"level":"info","message":"Logger configured"}
|
|
2
|
+
{"level":"info","message":"Initializing weacast-gfs plugin"}
|
|
3
|
+
{"level":"info","message":"Initializing gfs-world forecast"}
|
|
4
|
+
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/u-wind"}
|
|
5
|
+
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/v-wind"}
|
|
6
|
+
{"level":"error","message":"Could not update gfs-world/v-wind forecast at 2026-03-10T06:00:00Z for run 2026-03-10T00:00:00Z"}
|
|
7
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/v-wind/2026-03-10_00-00-00_2026-03-10_06-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
8
|
+
{"level":"error","message":"Could not update gfs-world/u-wind forecast at 2026-03-10T06:00:00Z for run 2026-03-10T00:00:00Z"}
|
|
9
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/u-wind/2026-03-10_00-00-00_2026-03-10_06-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
10
|
+
{"level":"error","message":"Could not update gfs-world/v-wind forecast at 2026-03-10T06:00:00Z for run 2026-03-09T18:00:00Z"}
|
|
11
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/v-wind/2026-03-09_18-00-00_2026-03-10_06-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
12
|
+
{"level":"error","message":"Could not update gfs-world/u-wind forecast at 2026-03-10T06:00:00Z for run 2026-03-09T18:00:00Z"}
|
|
13
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/u-wind/2026-03-09_18-00-00_2026-03-10_06-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
14
|
+
{"level":"error","message":"Could not update gfs-world/v-wind forecast at 2026-03-10T06:00:00Z for run 2026-03-09T12:00:00Z"}
|
|
15
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/v-wind/2026-03-09_12-00-00_2026-03-10_06-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
16
|
+
{"level":"error","message":"Could not update gfs-world/u-wind forecast at 2026-03-10T06:00:00Z for run 2026-03-09T12:00:00Z"}
|
|
17
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/u-wind/2026-03-09_12-00-00_2026-03-10_06-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
18
|
+
{"level":"error","message":"Could not update gfs-world/v-wind forecast at 2026-03-10T09:00:00Z for run 2026-03-10T00:00:00Z"}
|
|
19
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/v-wind/2026-03-10_00-00-00_2026-03-10_09-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
20
|
+
{"level":"error","message":"Could not update gfs-world/u-wind forecast at 2026-03-10T09:00:00Z for run 2026-03-10T00:00:00Z"}
|
|
21
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/u-wind/2026-03-10_00-00-00_2026-03-10_09-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
22
|
+
{"level":"error","message":"Could not update gfs-world/v-wind forecast at 2026-03-10T09:00:00Z for run 2026-03-09T18:00:00Z"}
|
|
23
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/v-wind/2026-03-09_18-00-00_2026-03-10_09-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
24
|
+
{"level":"error","message":"Could not update gfs-world/v-wind forecast at 2026-03-10T09:00:00Z for run 2026-03-09T12:00:00Z"}
|
|
25
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/v-wind/2026-03-09_12-00-00_2026-03-10_09-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
26
|
+
{"level":"info","message":"Completed forecast data update on gfs-world/v-wind"}
|
|
27
|
+
{"level":"error","message":"Could not update gfs-world/u-wind forecast at 2026-03-10T09:00:00Z for run 2026-03-09T18:00:00Z"}
|
|
28
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/u-wind/2026-03-09_18-00-00_2026-03-10_09-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
29
|
+
{"level":"error","message":"Could not update gfs-world/u-wind forecast at 2026-03-10T09:00:00Z for run 2026-03-09T12:00:00Z"}
|
|
30
|
+
{"level":"error","message":"Command failed: /home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json --data /home/robin/Taff/kalisio/kdk/test/api/map/forecast-data/gfs-world/u-wind/2026-03-09_12-00-00_2026-03-10_09-00-00.grib\n/home/robin/Taff/kalisio/kdk/node_modules/@weacast/grib2json/bin/grib2json: 3: /bin/java: not found\n"}
|
|
31
|
+
{"level":"info","message":"Completed forecast data update on gfs-world/u-wind"}
|
|
32
|
+
{"level":"error","message":"Cannot check alert 69afde354d314fa3bd9e24a8 as no data is available for gfs-world"}
|
|
33
|
+
{"level":"error","message":"Cannot check alert 69afde354d314fa3bd9e24a8 as no data is available for gfs-world"}
|
|
34
|
+
{"level":"error","message":"Cannot check alert 69afde354d314fa3bd9e24a8 as no data is available for gfs-world"}
|
|
35
|
+
{"level":"error","message":"Cannot check alert 69afde444d314fa3bd9e24a9 as no data is available for gfs-world"}
|
|
36
|
+
{"level":"error","message":"Cannot check alert 69afde444d314fa3bd9e24a9 as no data is available for gfs-world"}
|
|
37
|
+
{"level":"error","message":"Cannot check alert 69afde444d314fa3bd9e24a9 as no data is available for gfs-world"}
|
|
38
|
+
{"level":"error","message":"Cannot check alert 69afde534d314fa3bd9e24aa as no data is available for gfs-world"}
|
|
39
|
+
{"level":"error","message":"Cannot check alert 69afde724d314fa3bd9e29ed as no data is available for features service vigicrues-observations"}
|
|
40
|
+
{"level":"error","message":"error: api/catalog - Method: create: Object with name equals to dummy already exist for service catalog"}
|
|
41
|
+
{"level":"info","message":"Logger configured"}
|
|
42
|
+
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
43
|
+
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $function operator"}
|
|
44
|
+
{"level":"info","message":"Logger configured"}
|
|
45
|
+
{"level":"info","message":"Initializing weacast-gfs plugin"}
|
|
46
|
+
{"level":"info","message":"Initializing gfs-world forecast"}
|
|
47
|
+
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/u-wind"}
|
|
48
|
+
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/v-wind"}
|
|
49
|
+
{"level":"info","message":"Completed forecast data update on gfs-world/v-wind"}
|
|
50
|
+
{"level":"info","message":"Completed forecast data update on gfs-world/u-wind"}
|
|
51
|
+
{"level":"error","message":"Cannot check alert 69afe195ae25fbb35c793f22 as no data is available for gfs-world"}
|
|
52
|
+
{"level":"error","message":"Cannot check alert 69afe1b3ae25fbb35c794465 as no data is available for features service vigicrues-observations"}
|
|
53
|
+
{"level":"error","message":"error: api/catalog - Method: create: Object with name equals to dummy already exist for service catalog"}
|
|
54
|
+
{"level":"info","message":"Logger configured"}
|
|
55
|
+
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
56
|
+
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $function operator"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{"level":"info","message":"This is a log test"}
|
|
2
|
-
{"level":"info","message":"This is a log test"}
|
|
3
|
-
{"level":"info","message":"This is a log test"}
|
|
4
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
5
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
6
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
7
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
8
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
9
|
-
{"level":"info","message":"This is a log test"}
|
|
10
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
11
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
12
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
13
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
14
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
15
|
-
{"level":"info","message":"This is a log test"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{"level":"info","message":"This is a log test"}
|
|
2
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
3
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
4
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
5
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
6
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
7
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
8
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
9
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
10
|
-
{"level":"info","message":"This is a log test"}
|
|
11
|
-
{"level":"error","message":"error: api/users - Method: get: No record found for id '68dff30e7ca37978a60fb78a'"}
|
|
12
|
-
{"level":"error","message":"error: api/users - Method: patch: No record found for id '68dff30e7ca37978a60fb78a'"}
|
|
13
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
14
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
15
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
16
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
17
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
18
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
File without changes
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
2
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
3
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
4
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
5
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
6
|
-
{"level":"info","message":"This is a log test"}
|
|
7
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
8
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
9
|
-
{"level":"info","message":"This is a log test"}
|
|
10
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
11
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
12
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
13
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
14
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
15
|
-
{"level":"info","message":"This is a log test"}
|
|
16
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
17
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
18
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
19
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
20
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
21
|
-
{"level":"info","message":"This is a log test"}
|
|
22
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
23
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
24
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
25
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
26
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
27
|
-
{"level":"info","message":"This is a log test"}
|
|
28
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
29
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
30
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
31
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
32
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
33
|
-
{"level":"info","message":"This is a log test"}
|
|
34
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
35
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
36
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
37
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
38
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
39
|
-
{"level":"info","message":"This is a log test"}
|
|
40
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
41
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
42
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
43
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
44
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
45
|
-
{"level":"info","message":"This is a log test"}
|
|
46
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
47
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
48
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
49
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
50
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
51
|
-
{"level":"info","message":"This is a log test"}
|
|
52
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
53
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
54
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
55
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
56
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
57
|
-
{"level":"info","message":"This is a log test"}
|
|
58
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
59
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
60
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
61
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
62
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
63
|
-
{"level":"info","message":"This is a log test"}
|
|
64
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
65
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
66
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
67
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
68
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
69
|
-
{"level":"info","message":"This is a log test"}
|
|
70
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
71
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
72
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
73
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
74
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
75
|
-
{"level":"info","message":"This is a log test"}
|
|
76
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
77
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
78
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
79
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
80
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
81
|
-
{"level":"info","message":"This is a log test"}
|
|
82
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
83
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
84
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
85
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
86
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
87
|
-
{"level":"info","message":"This is a log test"}
|
|
88
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
89
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
90
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
91
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
92
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
93
|
-
{"level":"info","message":"This is a log test"}
|
|
94
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
95
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
96
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
97
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
98
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
99
|
-
{"level":"info","message":"This is a log test"}
|
|
100
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
101
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
102
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
103
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
104
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
105
|
-
{"level":"info","message":"This is a log test"}
|
|
106
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
107
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
108
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
109
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
110
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
111
|
-
{"level":"info","message":"This is a log test"}
|
|
112
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
113
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
114
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
115
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
116
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
117
|
-
{"level":"info","message":"This is a log test"}
|
|
File without changes
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
2
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
3
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
4
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
5
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
6
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
7
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
8
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
9
|
-
{"level":"info","message":"This is a log test"}
|
|
10
|
-
{"level":"error","message":"error: api/users - Method: get: No record found for id '6929a931fa3f18c493e22a66'"}
|
|
11
|
-
{"level":"error","message":"error: api/users - Method: patch: No record found for id '6929a931fa3f18c493e22a66'"}
|
|
12
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
13
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
14
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
15
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
16
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
17
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
2
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
3
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
4
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
5
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
6
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
7
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
8
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot read properties of undefined (reading 'toString')"}
|
|
9
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot read properties of undefined (reading 'toString')"}
|
|
10
|
-
{"level":"info","message":"This is a log test"}
|
|
11
|
-
{"level":"error","message":"error: api/users - Method: get: No record found for id '69382b47e62fa333c2761b2e'"}
|
|
12
|
-
{"level":"error","message":"error: api/users - Method: patch: No record found for id '69382b47e62fa333c2761b2e'"}
|
|
13
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
14
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
15
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
16
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
17
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
18
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
19
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
20
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
21
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
22
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
23
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
24
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
25
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
26
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
27
|
-
{"level":"info","message":"This is a log test"}
|
|
28
|
-
{"level":"error","message":"error: api/users - Method: get: No record found for id '69382ba2787a1d350b42cf84'"}
|
|
29
|
-
{"level":"error","message":"error: api/users - Method: patch: No record found for id '69382ba2787a1d350b42cf84'"}
|
|
30
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
31
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
32
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
33
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
34
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
35
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
36
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
37
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
38
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
39
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
40
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
41
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
42
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
43
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot read properties of undefined (reading 'toString')"}
|
|
44
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot read properties of undefined (reading 'toString')"}
|
|
45
|
-
{"level":"info","message":"This is a log test"}
|
|
46
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
47
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
48
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
49
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
50
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
51
|
-
{"level":"error","message":"error: api/storage - Method: get: The specified key does not exist."}
|
|
52
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
53
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
54
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
55
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
56
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot read properties of undefined (reading 'toString')"}
|
|
57
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot read properties of undefined (reading 'toString')"}
|
|
58
|
-
{"level":"info","message":"This is a log test"}
|
|
59
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
60
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
61
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
62
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
63
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
64
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
65
|
-
{"level":"info","message":"This is a log test"}
|
|
66
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
67
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
68
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
69
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
70
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
71
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
72
|
-
{"level":"info","message":"This is a log test"}
|
|
73
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
74
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
75
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
76
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
77
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
78
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
79
|
-
{"level":"info","message":"This is a log test"}
|
|
80
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
81
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
82
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
83
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
84
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
85
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
86
|
-
{"level":"info","message":"This is a log test"}
|
|
87
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
88
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
89
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
90
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
91
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
92
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
93
|
-
{"level":"info","message":"This is a log test"}
|
|
94
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
95
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
96
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
97
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
98
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
99
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
100
|
-
{"level":"info","message":"This is a log test"}
|
|
101
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
102
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
103
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
104
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
105
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
106
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
107
|
-
{"level":"info","message":"This is a log test"}
|
|
108
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
109
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
110
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
111
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
112
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
113
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on resource"}
|
|
114
|
-
{"level":"info","message":"This is a log test"}
|
|
115
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
116
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
117
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
118
|
-
{"level":"error","message":"error: api/authorisations - Method: create: isObjectID is not defined"}
|
|
119
|
-
{"level":"error","message":"error: api/authorisations - Method: create: isObjectID is not defined"}
|
|
120
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: isObjectID is not defined"}
|
|
121
|
-
{"level":"info","message":"This is a log test"}
|
|
122
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
123
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
124
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
125
|
-
{"level":"error","message":"error: api/authorisations - Method: create: Cannot find subjects = 6938322c77182f3d3bc7f97c to dynamically populate."}
|
|
126
|
-
{"level":"error","message":"error: api/authorisations - Method: create: Cannot find subjects = 6938322c77182f3d3bc7f97c to dynamically populate."}
|
|
127
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot find subjects = 6938322c77182f3d3bc7f97c to dynamically populate."}
|
|
128
|
-
{"level":"info","message":"This is a log test"}
|
|
129
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
130
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
131
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
132
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
133
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: isObjectID is not defined"}
|
|
134
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: isObjectID is not defined"}
|
|
135
|
-
{"level":"info","message":"This is a log test"}
|
|
136
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
137
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
138
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
139
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
140
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot find object with id 6938337d7c183f3eb66f7ea2 to dynamically populate."}
|
|
141
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: Cannot find object with id 6938337d7c183f3eb66f7ea2 to dynamically populate."}
|
|
142
|
-
{"level":"info","message":"This is a log test"}
|
|
143
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
144
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
145
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
146
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
147
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
148
|
-
{"level":"info","message":"This is a log test"}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
2
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
3
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
4
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
5
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
6
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
7
|
-
{"level":"error","message":"error: api/users - Method: find: failed to reconnect after 30 attempts with interval 1000 ms"}
|
|
8
|
-
{"level":"error","message":"error: api/users - Method: find: failed to reconnect after 30 attempts with interval 1000 ms"}
|
|
9
|
-
{"level":"error","message":"error: api/users - Method: create: failed to reconnect after 30 attempts with interval 1000 ms"}
|
|
10
|
-
{"level":"error","message":"error: api/users - Method: create: failed to reconnect after 30 attempts with interval 1000 ms"}
|
|
11
|
-
{"level":"error","message":"error: api/messages - Method: create: server instance pool was destroyed"}
|
|
12
|
-
{"level":"info","message":"This is a log test"}
|
|
13
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
14
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
15
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
16
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
17
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
18
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
19
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
20
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
21
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
22
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
23
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
24
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
25
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
26
|
-
{"level":"error","message":"Could not connect to mongodb database(s), please check your configuration failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]","name":"MongoNetworkError","stack":"MongoNetworkError: failed to connect to server [127.0.0.1:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017\n at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1611:16) {\n name: 'MongoNetworkError'\n}]\n at Pool.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/topologies/server.js:441:11)\n at Pool.emit (node:events:524:28)\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:564:14\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/pool.js:1000:11\n at /home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:32:7\n at callback (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:300:5)\n at Socket.<anonymous> (/home/luc/Development/kalisio/kdk/node_modules/mongodb/lib/core/connection/connect.js:330:7)\n at Object.onceWrapper (node:events:639:26)\n at Socket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)"}
|
|
27
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
28
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
29
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
30
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
31
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
32
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
33
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
34
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
35
|
-
{"level":"info","message":"This is a log test"}
|
|
36
|
-
{"level":"error","message":"error: api/users - Method: get: No record found for id '6942771cd38c8b63e8783481'"}
|
|
37
|
-
{"level":"error","message":"error: api/users - Method: patch: No record found for id '6942771cd38c8b63e8783481'"}
|
|
38
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
39
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
40
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
41
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
42
|
-
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
43
|
-
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
44
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
45
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
46
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
47
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
48
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
49
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
50
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
51
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
52
|
-
{"level":"info","message":"This is a log test"}
|
|
53
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
54
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
55
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
56
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
57
|
-
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
58
|
-
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
2
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
3
|
-
{"level":"error","message":"error: api/account - Method: create: The provided password does not comply to the password policy"}
|
|
4
|
-
{"level":"error","message":"error: api/messages - Method: create: You are not allowed to access service messages"}
|
|
5
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
6
|
-
{"level":"error","message":"error: api/users - Method: create: The provided password does not comply to the password policy"}
|
|
7
|
-
{"level":"error","message":"error: api/authorisations - Method: create: You are not allowed to change authorisation on resource"}
|
|
8
|
-
{"level":"error","message":"error: api/authorisations - Method: remove: You are not allowed to change authorisation on subject(s)"}
|
|
9
|
-
{"level":"info","message":"This is a log test"}
|
|
10
|
-
{"level":"error","message":"error: api/users - Method: get: No record found for id '697ba8696f4ee8c7e49542cd'"}
|
|
11
|
-
{"level":"error","message":"error: api/users - Method: patch: No record found for id '697ba8696f4ee8c7e49542cd'"}
|
|
12
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
13
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
14
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
15
|
-
{"level":"error","message":"error: api/service - Method: create: validation failed"}
|
|
16
|
-
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
17
|
-
{"level":"error","message":"error: api/storage - Method: get: NoSuchKey"}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"level":"error","message":"error: api/vigicrues-stations - Method: find: Point coordinates must be finite numbers"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{"level":"info","message":"Logger configured"}
|
|
2
|
-
{"level":"info","message":"Initializing weacast-gfs plugin"}
|
|
3
|
-
{"level":"info","message":"Initializing gfs-world forecast"}
|
|
4
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/u-wind"}
|
|
5
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/v-wind"}
|
|
6
|
-
{"level":"info","message":"Completed forecast data update on gfs-world/v-wind"}
|
|
7
|
-
{"level":"info","message":"Completed forecast data update on gfs-world/u-wind"}
|
|
8
|
-
{"level":"error","message":"error: api/alerts - Method: create: Not Found"}
|
|
9
|
-
{"level":"error","message":"error: api/alerts - Method: create: Not Found"}
|
|
10
|
-
{"level":"error","message":"Cannot check alert 6929a954bc2c33c5e5584bca as no data is available for gfs-world"}
|
|
11
|
-
{"level":"error","message":"error: api/alerts - Method: create: Not Found"}
|
|
12
|
-
{"level":"error","message":"error: api/alerts - Method: create: Not Found"}
|
|
13
|
-
{"level":"error","message":"error: api/alerts - Method: create: Not Found"}
|
|
14
|
-
{"level":"error","message":"Cannot check alert 6929a955bc2c33c5e558510d as no data is available for features service vigicrues-observations"}
|
|
15
|
-
{"level":"error","message":"error: api/alerts - Method: create: Not Found"}
|
|
16
|
-
{"level":"error","message":"error: api/catalog - Method: create: Object with name equals to dummy already exist for service catalog"}
|
|
17
|
-
{"level":"info","message":"Logger configured"}
|
|
18
|
-
{"level":"info","message":"Logger configured"}
|
|
19
|
-
{"level":"info","message":"Initializing weacast-gfs plugin"}
|
|
20
|
-
{"level":"info","message":"Initializing gfs-world forecast"}
|
|
21
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/u-wind"}
|
|
22
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/v-wind"}
|
|
23
|
-
{"level":"info","message":"Completed forecast data update on gfs-world/u-wind"}
|
|
24
|
-
{"level":"info","message":"Completed forecast data update on gfs-world/v-wind"}
|
|
25
|
-
{"level":"error","message":"Cannot check alert 6929a9b283f1d8c9515cf25c as no data is available for gfs-world"}
|
|
26
|
-
{"level":"error","message":"Cannot check alert 6929a9d083f1d8c9515cf79f as no data is available for features service vigicrues-observations"}
|
|
27
|
-
{"level":"error","message":"error: api/catalog - Method: create: Object with name equals to dummy already exist for service catalog"}
|
|
28
|
-
{"level":"info","message":"Logger configured"}
|
|
29
|
-
{"level":"info","message":"Logger configured"}
|
|
30
|
-
{"level":"info","message":"Initializing weacast-gfs plugin"}
|
|
31
|
-
{"level":"info","message":"Initializing gfs-world forecast"}
|
|
32
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/u-wind"}
|
|
33
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/v-wind"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{"level":"info","message":"Logger configured"}
|
|
2
|
-
{"level":"info","message":"Initializing weacast-gfs plugin"}
|
|
3
|
-
{"level":"info","message":"Initializing gfs-world forecast"}
|
|
4
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/u-wind"}
|
|
5
|
-
{"level":"info","message":"Checking for up-to-date forecast data on gfs-world/v-wind"}
|
|
6
|
-
{"level":"info","message":"Completed forecast data update on gfs-world/v-wind"}
|
|
7
|
-
{"level":"info","message":"Completed forecast data update on gfs-world/u-wind"}
|
|
8
|
-
{"level":"error","message":"Cannot check alert 695cd8a3f08de93e59fe3904 as no data is available for gfs-world"}
|
|
9
|
-
{"level":"error","message":"Cannot check alert 695cd8c1f08de93e59fe3e47 as no data is available for features service vigicrues-observations"}
|
|
10
|
-
{"level":"error","message":"error: api/catalog - Method: create: Object with name equals to dummy already exist for service catalog"}
|
|
11
|
-
{"level":"info","message":"Logger configured"}
|
|
12
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: $accumulator missing required argument 'init'"}
|
|
13
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: $accumulator missing required argument 'init'"}
|
|
14
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
15
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
16
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $function operator"}
|
|
17
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
18
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $function operator"}
|
|
19
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
20
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $addFields operator"}
|
|
21
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
22
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $function operator"}
|
|
23
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
24
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $function operator"}
|
|
25
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $accumulator operator"}
|
|
26
|
-
{"level":"error","message":"error: api/vigicrues-observations - Method: find: You are not allowed to use $function operator"}
|