mirror of
https://github.com/home-assistant/core.git
synced 2025-08-17 19:41:45 +02:00
Change log level to debug in Netatmo (#103365)
Change log level to debug
This commit is contained in:
@@ -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])
|
||||
|
@@ -324,7 +324,7 @@ async def async_setup_entry(
|
||||
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)
|
||||
|
Reference in New Issue
Block a user