feat: Added rabbitmq to send events

This commit is contained in:
Davidson Gomes
2023-08-02 21:14:21 -03:00
parent f1571b5f66
commit 56d621bab8
2 changed files with 5 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ export const initAMQP = () => {
channel.assertExchange(exchangeName, 'topic', { durable: false });
amqpChannel = channel;
logger.log('AMQP initialized');
logger.info('AMQP initialized');
resolve();
});
});