@cadenza.io/service 1.20.5 → 1.20.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/dist/index.js CHANGED
@@ -3144,7 +3144,16 @@ var DatabaseController = class _DatabaseController {
3144
3144
  console.log(
3145
3145
  "EXECUTED",
3146
3146
  taskName,
3147
- context.errored ? JSON.stringify(context).slice(0, 700) : JSON.stringify(context).slice(0, 100),
3147
+ context.errored ? JSON.stringify({
3148
+ data: context.data,
3149
+ queryData: context.queryData,
3150
+ filter: context.filter,
3151
+ fields: context.fields,
3152
+ joins: context.joins,
3153
+ sort: context.sort,
3154
+ limit: context.limit,
3155
+ offset: context.offset
3156
+ }) : JSON.stringify(context).slice(0, 140),
3148
3157
  context.__error
3149
3158
  );
3150
3159
  delete context.queryData;