From 1294631f8ab4644b825f754eef682b723a2c0a1c Mon Sep 17 00:00:00 2001 From: Tomaae <23486452+tomaae@users.noreply.github.com> Date: Fri, 19 Aug 2022 11:43:01 +0200 Subject: [PATCH] Updated model dummy services debugs --- custom_components/mikrotik_router/model.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/custom_components/mikrotik_router/model.py b/custom_components/mikrotik_router/model.py index 159cacc..75a47f1 100644 --- a/custom_components/mikrotik_router/model.py +++ b/custom_components/mikrotik_router/model.py @@ -304,16 +304,16 @@ class MikrotikEntity: async def start(self): """Dummy run function""" - _LOGGER.error("Start functionality does not exist for %s", self.entity_id) + _LOGGER.error("Start functionality does not exist for %s", self.unique_id) async def stop(self): """Dummy stop function""" - _LOGGER.error("Stop functionality does not exist for %s", self.entity_id) + _LOGGER.error("Stop functionality does not exist for %s", self.unique_id) async def restart(self): """Dummy restart function""" - _LOGGER.error("Restart functionality does not exist for %s", self.entity_id) + _LOGGER.error("Restart functionality does not exist for %s", self.unique_id) async def reload(self): """Dummy reload function""" - _LOGGER.error("Reload functionality does not exist for %s", self.entity_id) + _LOGGER.error("Reload functionality does not exist for %s", self.unique_id)