Skip to content

Commit d1592f2

Browse files
authored
Merge pull request #203 from jwillemsen/jwi-ATTR_WIFI_SSID
Fixed logging of ATTR_WIFI_SSID
2 parents 8b1d735 + 76402e8 commit d1592f2

File tree

1 file changed

+1
-1
lines changed
  • custom_components/daikin_residential_altherma

1 file changed

+1
-1
lines changed

custom_components/daikin_residential_altherma/sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
202202
sensor = DaikinSensor.factory(device, ATTR_WIFI_SSID, "")
203203
sensors.append(sensor)
204204
else:
205-
_LOGGER.info("Device '%s' NOT supports '%s'", device.name, ATTR_WIFI_STRENGTH)
205+
_LOGGER.info("Device '%s' NOT supports '%s'", device.name, ATTR_WIFI_SSID)
206206

207207
if device.getData(ATTR_LOCAL_SSID) is not None:
208208
sensor = DaikinSensor.factory(device, ATTR_LOCAL_SSID, "")

0 commit comments

Comments
 (0)