From 4cc417677e26ad24599a6be5e37089b86e09b9ea Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 3 Nov 2016 22:45:01 -0700 Subject: [PATCH] Add link to issue in warning slow entity update (#4211) --- homeassistant/helpers/entity.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/helpers/entity.py b/homeassistant/helpers/entity.py index 560e944abe6..ecb04aca9d9 100644 --- a/homeassistant/helpers/entity.py +++ b/homeassistant/helpers/entity.py @@ -244,7 +244,8 @@ class Entity(object): if end - start > 0.2: _LOGGER.warning('Updating state for %s took %.3f seconds. ' - 'Please report to the developers.', self.entity_id, + 'Please report platform to the developers at ' + 'https://goo.gl/Nvioub', self.entity_id, end - start) # Overwrite properties that have been set in the config file.