Change log level to debug in Netatmo (#103365)
Change log level to debug
This commit is contained in:
parent
22be56a05b
commit
fa6d8d281d
2 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ async def async_setup_entry(
|
||||||
def _create_entity(netatmo_device: NetatmoRoom) -> None:
|
def _create_entity(netatmo_device: NetatmoRoom) -> None:
|
||||||
if not netatmo_device.room.climate_type:
|
if not netatmo_device.room.climate_type:
|
||||||
msg = f"No climate type found for this room: {netatmo_device.room.name}"
|
msg = f"No climate type found for this room: {netatmo_device.room.name}"
|
||||||
_LOGGER.info(msg)
|
_LOGGER.debug(msg)
|
||||||
return
|
return
|
||||||
entity = NetatmoThermostat(netatmo_device)
|
entity = NetatmoThermostat(netatmo_device)
|
||||||
async_add_entities([entity])
|
async_add_entities([entity])
|
||||||
|
|
|
@ -324,7 +324,7 @@ async def async_setup_entry(
|
||||||
def _create_room_sensor_entity(netatmo_device: NetatmoRoom) -> None:
|
def _create_room_sensor_entity(netatmo_device: NetatmoRoom) -> None:
|
||||||
if not netatmo_device.room.climate_type:
|
if not netatmo_device.room.climate_type:
|
||||||
msg = f"No climate type found for this room: {netatmo_device.room.name}"
|
msg = f"No climate type found for this room: {netatmo_device.room.name}"
|
||||||
_LOGGER.info(msg)
|
_LOGGER.debug(msg)
|
||||||
return
|
return
|
||||||
async_add_entities(
|
async_add_entities(
|
||||||
NetatmoRoomSensor(netatmo_device, description)
|
NetatmoRoomSensor(netatmo_device, description)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue