diff --git a/communicator.py b/communicator.py index f27940a..7e0f42e 100644 --- a/communicator.py +++ b/communicator.py @@ -50,7 +50,8 @@ class Communicator: json = response.json() LOGGER.info(f"List of currently available consumers: {json}") return json - except Exception: + except Exception as e: + LOGGER.exception(e) return [] def isconsumeravailable(self) -> bool: