diff --git a/platypush/backend/pushbullet/__init__.py b/platypush/backend/pushbullet/__init__.py index c0fe6e21c1..ee85f44e06 100644 --- a/platypush/backend/pushbullet/__init__.py +++ b/platypush/backend/pushbullet/__init__.py @@ -152,7 +152,9 @@ class PushbulletBackend(Backend): try: push = await self.ws.recv() except Exception as e: - self.logger.exception(e) + self.logger.warning('Disconnected from ' + + 'Pushbullet: {}'. + format(str(e))) break self.on_push(self.ws, push)