From 9c6e27ca135e539ef4638976fba1dd37246b2609 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 14 May 2020 22:51:53 +0200 Subject: [PATCH] Attempt to see if the error itself can give us a little more information Signed-off-by: Pierre-Yves Chibon --- callback_plugins/fedora_messaging_callback.py | 1 + 1 file changed, 1 insertion(+) diff --git a/callback_plugins/fedora_messaging_callback.py b/callback_plugins/fedora_messaging_callback.py index 9833372cc0..182ee7898d 100644 --- a/callback_plugins/fedora_messaging_callback.py +++ b/callback_plugins/fedora_messaging_callback.py @@ -102,6 +102,7 @@ class CallbackModule(CallbackBase): except ConnectionException as e: LOGGER.warning("Error sending message %s: %s", msg.id, e) print("Error sending message %s: %s", msg.id, e) + print(e) self.playbook_path = path def v2_playbook_on_stats(self, stats):