pangea-server 3.3.112 → 3.3.113
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.
|
@@ -309,7 +309,7 @@ function processInstance(model, instance) {
|
|
|
309
309
|
console.log('relName: ', relName);
|
|
310
310
|
const relInstance = instance[relName];
|
|
311
311
|
console.log('relInstance');
|
|
312
|
-
console.
|
|
312
|
+
console.dir(relInstance, { depth: 1 });
|
|
313
313
|
if (!relInstance)
|
|
314
314
|
continue;
|
|
315
315
|
const relModel = model.Relations[relName].getModelFn();
|
|
@@ -325,10 +325,10 @@ function processInstance(model, instance) {
|
|
|
325
325
|
console.log(model.name);
|
|
326
326
|
const jsonInstance = instance.toJSON();
|
|
327
327
|
console.log('jsonInstance');
|
|
328
|
-
console.
|
|
328
|
+
console.dir(jsonInstance, { depth: 1 });
|
|
329
329
|
model.InitInstance(jsonInstance);
|
|
330
330
|
console.log('model.InitInstance()');
|
|
331
|
-
console.
|
|
331
|
+
console.dir(jsonInstance, { depth: 1 });
|
|
332
332
|
return jsonInstance;
|
|
333
333
|
}
|
|
334
334
|
function processInstances(model, instances) {
|