Skip to content

Commit

Permalink
decrease temperatureUnit missing warning to info
Browse files Browse the repository at this point in the history
  • Loading branch information
litinoveweedle committed Jun 2, 2024
1 parent 0028acc commit 4ac3fa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/smartir/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(self, hass, config, device_data):
if device_data["temperatureUnit"] == "F":
self._data_temperature_unit = UnitOfTemperature.FAHRENHEIT
elif device_data["temperatureUnit"] != "C":
_LOGGER.warning(
_LOGGER.info(
"Invalid temperatureUnit value in device data file, can be either 'C' or 'K'."
)
else:
Expand Down

0 comments on commit 4ac3fa1

Please sign in to comment.