Skip to content

Commit

Permalink
Add missing name to logging in DataUpdateCoordinator (#32023)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFlamm committed Feb 20, 2020
1 parent d6c185f commit 6c9d4a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/helpers/update_coordinator.py
Expand Up @@ -128,7 +128,7 @@ async def async_refresh(self) -> None:
else:
if not self.last_update_success:
self.last_update_success = True
self.logger.info("Fetching %s data recovered")
self.logger.info("Fetching %s data recovered", self.name)

finally:
self.logger.debug(
Expand Down

0 comments on commit 6c9d4a6

Please sign in to comment.