[#420] - Message d'erreur dans home assistant (#421)

Co-authored-by: Jean-Marc Collin <jean-marc.collin-extern@renault.com>
This commit is contained in:
Jean-Marc Collin
2024-03-23 07:17:55 +01:00
committed by GitHub
parent 5369111f2d
commit 7ded723c8b
2 changed files with 7 additions and 7 deletions

View File

@@ -14,6 +14,6 @@
"quality_scale": "silver", "quality_scale": "silver",
"requirements": [], "requirements": [],
"ssdp": [], "ssdp": [],
"version": "6.0.1", "version": "6.0.2",
"zeroconf": [] "zeroconf": []
} }

View File

@@ -100,7 +100,7 @@ async def async_setup_entry(
if not entry.data.get(CONF_USE_PRESETS_CENTRAL_CONFIG, False): if not entry.data.get(CONF_USE_PRESETS_CENTRAL_CONFIG, False):
if entry.data.get(CONF_AC_MODE, False): if entry.data.get(CONF_AC_MODE, False):
for preset in CONF_PRESETS_WITH_AC_VALUES: for preset in CONF_PRESETS_WITH_AC_VALUES:
_LOGGER.warning( _LOGGER.debug(
"%s - configuring Number non central, AC, non AWAY for preset %s", "%s - configuring Number non central, AC, non AWAY for preset %s",
name, name,
preset, preset,
@@ -112,7 +112,7 @@ async def async_setup_entry(
) )
else: else:
for preset in CONF_PRESETS_VALUES: for preset in CONF_PRESETS_VALUES:
_LOGGER.warning( _LOGGER.debug(
"%s - configuring Number non central, non AC, non AWAY for preset %s", "%s - configuring Number non central, non AC, non AWAY for preset %s",
name, name,
preset, preset,
@@ -128,7 +128,7 @@ async def async_setup_entry(
) is True and not entry.data.get(CONF_USE_PRESENCE_CENTRAL_CONFIG, False): ) is True and not entry.data.get(CONF_USE_PRESENCE_CENTRAL_CONFIG, False):
if entry.data.get(CONF_AC_MODE, False): if entry.data.get(CONF_AC_MODE, False):
for preset in CONF_PRESETS_AWAY_WITH_AC_VALUES: for preset in CONF_PRESETS_AWAY_WITH_AC_VALUES:
_LOGGER.warning( _LOGGER.debug(
"%s - configuring Number non central, AC, AWAY for preset %s", "%s - configuring Number non central, AC, AWAY for preset %s",
name, name,
preset, preset,
@@ -140,7 +140,7 @@ async def async_setup_entry(
) )
else: else:
for preset in CONF_PRESETS_AWAY_VALUES: for preset in CONF_PRESETS_AWAY_VALUES:
_LOGGER.warning( _LOGGER.debug(
"%s - configuring Number non central, non AC, AWAY for preset %s", "%s - configuring Number non central, non AC, AWAY for preset %s",
name, name,
preset, preset,
@@ -157,7 +157,7 @@ async def async_setup_entry(
ActivateBoilerThresholdNumber(hass, unique_id, name, entry.data) ActivateBoilerThresholdNumber(hass, unique_id, name, entry.data)
) )
for preset in CONF_PRESETS_WITH_AC_VALUES: for preset in CONF_PRESETS_WITH_AC_VALUES:
_LOGGER.warning( _LOGGER.debug(
"%s - configuring Number central, AC, non AWAY for preset %s", "%s - configuring Number central, AC, non AWAY for preset %s",
name, name,
preset, preset,
@@ -169,7 +169,7 @@ async def async_setup_entry(
) )
for preset in CONF_PRESETS_AWAY_WITH_AC_VALUES: for preset in CONF_PRESETS_AWAY_WITH_AC_VALUES:
_LOGGER.warning( _LOGGER.debug(
"%s - configuring Number central, AC, AWAY for preset %s", name, preset "%s - configuring Number central, AC, AWAY for preset %s", name, preset
) )
entities.append( entities.append(