Changed busy error to warning (#22398)

This commit is contained in:
Kevin Fronczak 2019-03-26 09:20:50 -04:00 committed by Charles Garwood
parent 2cebf9ef71
commit c71e5ed588

View File

@ -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']