Fix rest debug logging (#98649)

Correct rest debug logging
This commit is contained in:
Jan Bouwhuis 2023-08-18 23:03:56 +02:00 committed by GitHub
parent 9e42451934
commit a39af8aff9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ class RestData:
"REST xml result could not be parsed and converted to JSON"
)
else:
_LOGGER.debug("JSON converted from XML: %s", self.data)
_LOGGER.debug("JSON converted from XML: %s", value)
return value
async def async_update(self, log_errors: bool = True) -> None: