@autofleet/rabbit 2.2.8 → 2.2.9-beta

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
@@ -136,6 +136,7 @@ class RabbitMq {
136
136
  return;
137
137
  }
138
138
  this.creatingConnection = true;
139
+ logger_1.default.info('rabbit: env username', { userName: (process.env.RABBITMQ_USERNAME || 'doesnt exist') });
139
140
  const username = process.env.RABBITMQ_USERNAME || 'guest';
140
141
  const password = process.env.RABBITMQ_PASSWORD || 'guest';
141
142
  const host = process.env.RABBITMQ_SERVICE_HOST || '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/rabbit",
3
- "version": "2.2.8",
3
+ "version": "2.2.9-beta",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -215,6 +215,7 @@ class RabbitMq implements IAfRabbitMq {
215
215
  return;
216
216
  }
217
217
  this.creatingConnection = true;
218
+ logger.info('rabbit: env username', { userName: (process.env.RABBITMQ_USERNAME || 'doesnt exist') });
218
219
  const username: string = process.env.RABBITMQ_USERNAME || 'guest';
219
220
  const password: string = process.env.RABBITMQ_PASSWORD || 'guest';
220
221
  const host: string = process.env.RABBITMQ_SERVICE_HOST || '';