corebasic 1.0.191 → 1.0.192
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/libs/elabase.js +2 -2
- package/package.json +1 -1
package/libs/elabase.js
CHANGED
|
@@ -190,7 +190,7 @@ function validate_topology(meta, collection, fn_name) {
|
|
|
190
190
|
|
|
191
191
|
let config = COLLECTIONS_JSON?.[collection]
|
|
192
192
|
if (!config) {
|
|
193
|
-
console.warn(`Warn:
|
|
193
|
+
console.warn(`Warn: Missing config for collection: ${collection}${fn_name ? ` ${fn_name}` : ''}`)
|
|
194
194
|
return new_meta
|
|
195
195
|
}
|
|
196
196
|
|
|
@@ -205,7 +205,7 @@ function validate_topology(meta, collection, fn_name) {
|
|
|
205
205
|
|
|
206
206
|
if (config.suffix && meta.suffix) {
|
|
207
207
|
if (!config.suffix[meta.suffix]) {
|
|
208
|
-
console.warn(`Warn:
|
|
208
|
+
console.warn(`Warn: Missing suffix config for collection: ${collection} suffix:${meta.suffix}${fn_name ? ` ${fn_name}` : ''}`)
|
|
209
209
|
return new_meta
|
|
210
210
|
}
|
|
211
211
|
check_core_meta(config.suffix[meta.suffix], meta, meta.suffix)
|