Skip to content

Commit

Permalink
Change log level to debug in Netatmo (#103365)
Browse files Browse the repository at this point in the history
Change log level to debug
  • Loading branch information
cgtobi committed Nov 4, 2023
1 parent 22be56a commit fa6d8d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/netatmo/climate.py
Expand Up @@ -120,7 +120,7 @@ async def async_setup_entry(
def _create_entity(netatmo_device: NetatmoRoom) -> None:
if not netatmo_device.room.climate_type:
msg = f"No climate type found for this room: {netatmo_device.room.name}"
_LOGGER.info(msg)
_LOGGER.debug(msg)
return
entity = NetatmoThermostat(netatmo_device)
async_add_entities([entity])
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/netatmo/sensor.py
Expand Up @@ -324,7 +324,7 @@ def _create_sensor_entity(netatmo_device: NetatmoDevice) -> None:
def _create_room_sensor_entity(netatmo_device: NetatmoRoom) -> None:
if not netatmo_device.room.climate_type:
msg = f"No climate type found for this room: {netatmo_device.room.name}"
_LOGGER.info(msg)
_LOGGER.debug(msg)
return
async_add_entities(
NetatmoRoomSensor(netatmo_device, description)
Expand Down

0 comments on commit fa6d8d2

Please sign in to comment.