log exception
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2020-04-01 02:15:01 +02:00
parent 65db908fb6
commit e0c4d68da5

View File

@ -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: