Change log level to debug in Netatmo (#103365)

Change log level to debug
This commit is contained in:
Tobias Sauerwein 2023-11-04 12:31:57 +01:00 committed by GitHub
parent 22be56a05b
commit fa6d8d281d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

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