From 36d5fff8e04f447d21b935cb9dc397908dbe091b Mon Sep 17 00:00:00 2001 From: Derek Brooks Date: Wed, 6 Dec 2017 21:52:44 -0600 Subject: [PATCH] address feedback on log lines --- homeassistant/components/climate/nuheat.py | 3 +-- homeassistant/components/nuheat.py | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/homeassistant/components/climate/nuheat.py b/homeassistant/components/climate/nuheat.py index b1779ba5e5f..696a6961cb3 100644 --- a/homeassistant/components/climate/nuheat.py +++ b/homeassistant/components/climate/nuheat.py @@ -45,7 +45,6 @@ def setup_platform(hass, config, add_devices, discovery_info=None): if discovery_info is None: return - _LOGGER.info("Loading NuHeat thermostat climate component") temperature_unit = hass.config.units.temperature_unit api, serial_numbers, min_away_temp = hass.data[DATA_NUHEAT] thermostats = [ @@ -209,7 +208,7 @@ class NuHeatThermostat(ClimateDevice): else: self._thermostat.target_fahrenheit = temperature - _LOGGER.info( + _LOGGER.debug( "Setting NuHeat thermostat temperature to %s %s", temperature, self.temperature_unit) diff --git a/homeassistant/components/nuheat.py b/homeassistant/components/nuheat.py index 69cd674eed2..6a85a0dafa1 100644 --- a/homeassistant/components/nuheat.py +++ b/homeassistant/components/nuheat.py @@ -58,5 +58,4 @@ def setup(hass, config): hass.data[DATA_NUHEAT] = (api, devices, min_away_temp) discovery.load_platform(hass, "climate", DOMAIN, {}, config) - _LOGGER.debug("NuHeat initialized") return True