From c71e5ed588db54e4a6fbe0ddaed69b8f7b540d31 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 26 Mar 2019 09:20:50 -0400 Subject: [PATCH] Changed busy error to warning (#22398) --- homeassistant/components/radiotherm/climate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/radiotherm/climate.py b/homeassistant/components/radiotherm/climate.py index bad20884536..4132d3c27c7 100644 --- a/homeassistant/components/radiotherm/climate.py +++ b/homeassistant/components/radiotherm/climate.py @@ -246,8 +246,8 @@ class RadioThermostat(ClimateDevice): try: data = self.device.tstat['raw'] except radiotherm.validate.RadiothermTstatError: - _LOGGER.error('%s (%s) was busy (invalid value returned)', - self._name, self.device.host) + _LOGGER.warning('%s (%s) was busy (invalid value returned)', + self._name, self.device.host) return current_temp = data['temp']