Updated model dummy services debugs

This commit is contained in:
Tomaae 2022-08-19 11:43:01 +02:00
parent c468e2776e
commit 1294631f8a
No known key found for this signature in database
GPG key ID: 8360BBD8A381D1C0

View file

@ -304,16 +304,16 @@ class MikrotikEntity:
async def start(self): async def start(self):
"""Dummy run function""" """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): async def stop(self):
"""Dummy stop function""" """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): async def restart(self):
"""Dummy restart function""" """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): async def reload(self):
"""Dummy reload function""" """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)