Skip to content

Commit

Permalink
Intellifire: fix incorrect name attribute in debug log when setting f…
Browse files Browse the repository at this point in the history
…lame height (#109168)
  • Loading branch information
julienfreche committed Jan 31, 2024
1 parent 7e99ddc commit 5fd6028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/intellifire/number.py
Expand Up @@ -69,7 +69,7 @@ async def async_set_native_value(self, value: float) -> None:
value_to_send: int = int(value) - 1
LOGGER.debug(
"%s set flame height to %d with raw value %s",
self._attr_name,
self.name,
value,
value_to_send,
)
Expand Down

0 comments on commit 5fd6028

Please sign in to comment.