1
0
mirror of https://github.com/USA-RedDragon/badnest.git synced 2025-01-18 18:20:44 +00:00

Merge pull request #5 from USA-RedDragon/climate-logging

Add logger to climate
This commit is contained in:
Jacob McSwain 2019-10-19 18:44:00 -05:00 committed by GitHub
commit 4602092449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,