@cadenza.io/service 1.9.31 → 1.9.33

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/dist/index.js CHANGED
@@ -3185,7 +3185,8 @@ var DatabaseController = class _DatabaseController {
3185
3185
  console.log(
3186
3186
  "EXECUTED",
3187
3187
  `db${op.charAt(0).toUpperCase() + op.slice(1)}${tableName.charAt(0).toUpperCase() + tableName.slice(1)}`,
3188
- JSON.stringify(context)
3188
+ JSON.stringify(context).slice(0, 100),
3189
+ context.__error
3189
3190
  );
3190
3191
  delete context.queryData;
3191
3192
  delete context.data;
@@ -3589,7 +3590,6 @@ var CadenzaService = class {
3589
3590
  if (this.serviceCreated) return;
3590
3591
  this.bootstrap();
3591
3592
  this.serviceRegistry.serviceName = name;
3592
- GraphMetadataController.instance;
3593
3593
  DatabaseController.instance;
3594
3594
  options = __spreadValues({
3595
3595
  loadBalance: true,