@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 +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
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
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 });
|