@autofleet/rabbit 2.3.0 → 2.3.2

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
@@ -325,7 +325,6 @@ class RabbitMq {
325
325
  }
326
326
  sendToQueue(queue, content, options, customHeaders) {
327
327
  return __awaiter(this, void 0, void 0, function* () {
328
- logger_1.default.info('ss', RabbitMq.getPublishOptions(customHeaders));
329
328
  return wrapSetImmediate(() => __awaiter(this, void 0, void 0, function* () {
330
329
  RabbitMq.validateName('queue', queue);
331
330
  const channel = yield this.assertChannel();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/rabbit",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -418,7 +418,6 @@ class RabbitMq implements IAfRabbitMq {
418
418
  }
419
419
 
420
420
  async sendToQueue(queue: string, content: any, options?: any, customHeaders?: any) : Promise<boolean> {
421
- logger.info('ss', RabbitMq.getPublishOptions(customHeaders));
422
421
  return wrapSetImmediate(async () => {
423
422
  RabbitMq.validateName('queue', queue);
424
423
  const channel: ChannelWrapper = await this.assertChannel();