Add print in addition to the logger (that isn't set up) in the fedora_messaging callback
Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
parent
6d975e3959
commit
8189b0f964
1 changed files with 2 additions and 0 deletions
|
@ -117,5 +117,7 @@ class CallbackModule(CallbackBase):
|
|||
publish(msg)
|
||||
except PublishReturned as e:
|
||||
LOGGER.warning("Fedora Messaging broker rejected message %s: %s", msg.id, e)
|
||||
print("Fedora Messaging broker rejected message %s: %s", msg.id, e)
|
||||
except ConnectionException as e:
|
||||
LOGGER.warning("Error sending message %s: %s", msg.id, e)
|
||||
print("Error sending message %s: %s", msg.id, e)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue