Debug messages

This commit is contained in:
Tom Harris
2018-02-21 00:54:53 -05:00
parent 65656ccc83
commit 92623c4c59
5 changed files with 5 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ SENSOR_TYPES = {'openClosedSensor': 'opening',
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
"""Set up the INSTEON PLM device class for the hass platform."""
_LOGGER.debug("Got here binary_sensor")
entities = []
plm = hass.data['insteon_plm']

View File

@@ -32,6 +32,7 @@ _LOGGER = logging.getLogger(__name__)
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
"""Set up the INSTEON PLM device class for the hass platform."""
_LOGGER.debug("Got here fan")
entities = []
plm = hass.data['insteon_plm']

View File

@@ -22,6 +22,7 @@ MAX_BRIGHTNESS = 255
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
"""Set up the Insteon PLM device."""
_LOGGER.debug("Got here light")
entities = []
plm = hass.data['insteon_plm']

View File

@@ -19,6 +19,7 @@ _LOGGER = logging.getLogger(__name__)
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
"""Set up the INSTEON PLM device class for the hass platform."""
_LOGGER.debug("Got here sensor")
entities = []
plm = hass.data['insteon_plm']

View File

@@ -19,6 +19,7 @@ _LOGGER = logging.getLogger(__name__)
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
"""Set up the INSTEON PLM device class for the hass platform."""
_LOGGER.debug("Got here switch")
entities = []
plm = hass.data['insteon_plm']