@autofleet/rabbit 3.0.1-beta8 → 3.0.1-beta9

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
@@ -382,6 +382,9 @@ class RabbitMq {
382
382
  traceId2: outbreakTrace?.context?.get(consts_1.TRACING_HEADER),
383
383
  });
384
384
  }
385
+ logger_1.default.info('rabbit consume - third trace', {
386
+ trace: zehut_1.getCurrentPayload(),
387
+ });
385
388
  if (auditContext) {
386
389
  await auditContext(queue);
387
390
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/rabbit",
3
- "version": "3.0.1-beta8",
3
+ "version": "3.0.1-beta9",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -528,6 +528,9 @@ class RabbitMq implements IAfRabbitMq {
528
528
  });
529
529
  }
530
530
 
531
+ logger.info('rabbit consume - third trace', {
532
+ trace: getCurrentPayload(),
533
+ });
531
534
  if (auditContext) {
532
535
  await auditContext(queue);
533
536
  }