Skip to content

Commit

Permalink
fix print
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisoSouza committed Apr 30, 2024
1 parent 521a207 commit 854395e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bothub/authorizations/consumers/authorizations_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class OrgAuthConsumer(EDAConsumer): # pragma: no cover
def consume(self, message: amqp.Message):
print(f"[ProjectConsumer] - Consuming a message. Body: {message.body}")
print(f"[OrgAuthConsumer] - Consuming a message. Body: {message.body}")

try:
body = JSONParser.parse(message.body)
Expand All @@ -30,4 +30,4 @@ def consume(self, message: amqp.Message):
except Exception as exception:
capture_exception(exception)
message.channel.basic_reject(message.delivery_tag, requeue=False)
print(f"[ProjectConsumer] - Message rejected by: {exception}")
print(f"[OrgAuthConsumer] - Message rejected by: {exception}")

0 comments on commit 854395e

Please sign in to comment.