1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Clarify ConfigEntryNotReady log (#45425)

Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
Co-authored-by: Charles Garwood <cgarwood@gmail.com>
This commit is contained in:
Simone Chemelli
2021-01-22 18:13:23 +01:00
committed by GitHub
parent 198b875a6f
commit 86cd7911de
2 changed files with 4 additions and 3 deletions

View File

@@ -246,7 +246,8 @@ class ConfigEntry:
wait_time = 2 ** min(tries, 4) * 5
tries += 1
_LOGGER.warning(
"Config entry for %s not ready yet. Retrying in %d seconds",
"Config entry '%s' for %s integration not ready yet. Retrying in %d seconds",
self.title,
self.domain,
wait_time,
)