diff --git a/custom_components/fpl/sensor.py b/custom_components/fpl/sensor.py index bd14d93..1787c43 100644 --- a/custom_components/fpl/sensor.py +++ b/custom_components/fpl/sensor.py @@ -69,7 +69,9 @@ class FplSensor(Entity): @property def unique_id(self): """Return the ID of this device.""" - return "{}{}".format(DOMAIN, self._account) + id = "{}{}".format(DOMAIN, self._account) + _LOGGER.info(f"ID: {id}") + return id @property def name(self):