@autofleet/rabbit 3.2.24-beta.0 → 3.2.24-beta.1

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
@@ -185,6 +185,7 @@ class RabbitMq {
185
185
  findServers,
186
186
  });
187
187
  this.connectionsMap[connectionPurpose].connection = newConnection;
188
+ logger_1.default.info(`rabbit: created new connection ${connectionPurpose}`);
188
189
  newConnection.on('error', (err) => {
189
190
  logger_1.default.error('rabbit: connection error', { err });
190
191
  if (!isResolved) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/rabbit",
3
- "version": "3.2.24-beta.0",
3
+ "version": "3.2.24-beta.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
package/src/index.ts CHANGED
@@ -329,6 +329,7 @@ class RabbitMq implements IAfRabbitMq {
329
329
  });
330
330
 
331
331
  this.connectionsMap[connectionPurpose].connection = newConnection;
332
+ logger.info(`rabbit: created new connection ${connectionPurpose}`);
332
333
 
333
334
  newConnection.on('error', (err) => {
334
335
  logger.error('rabbit: connection error', { err });