diff --git a/custom_components/badnest/climate.py b/custom_components/badnest/climate.py index e673131..bca77db 100644 --- a/custom_components/badnest/climate.py +++ b/custom_components/badnest/climate.py @@ -1,5 +1,6 @@ """Demo platform that offers a fake climate device.""" from datetime import datetime +import logging from homeassistant.components.climate import ClimateDevice from homeassistant.components.climate.const import ( @@ -56,6 +57,8 @@ PRESET_AWAY_AND_ECO = "Away and Eco" PRESET_MODES = [PRESET_NONE, PRESET_AWAY, PRESET_ECO, PRESET_AWAY_AND_ECO] +_LOGGER = logging.getLogger(__name__) + async def async_setup_platform(hass, config,