forked from platypush/platypush
Consistent logging info
This commit is contained in:
parent
7a58add0ad
commit
4b0706380e
2 changed files with 6 additions and 0 deletions
|
@ -41,6 +41,9 @@ class KafkaBackend(Backend):
|
|||
|
||||
def run(self):
|
||||
self.consumer = KafkaConsumer(self.topic, bootstrap_servers=self.server)
|
||||
logging.info('Initialized kafka backend - server: {}, topic: {}'
|
||||
.format(self.server, self.topic))
|
||||
|
||||
for msg in self.consumer:
|
||||
self._on_record(msg)
|
||||
|
||||
|
|
|
@ -83,6 +83,9 @@ class PushbulletBackend(Backend):
|
|||
|
||||
def run(self):
|
||||
self._init_socket()
|
||||
logging.info('Initialized Pushbullet backend - device_id: {}'
|
||||
.format(self.device))
|
||||
|
||||
self.ws.run_forever()
|
||||
|
||||
# vim:sw=4:ts=4:et:
|
||||
|
|
Loading…
Reference in a new issue