Use debug instead of info log level in components [j] (#126037)
Use debug/warning instead of info log level in components [j]
This commit is contained in:
parent
136242e38c
commit
6a2d31a481
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||
if not juicenet.devices:
|
||||
_LOGGER.error("No JuiceNet devices found for this account")
|
||||
return False
|
||||
_LOGGER.info("%d JuiceNet device(s) found", len(juicenet.devices))
|
||||
_LOGGER.debug("%d JuiceNet device(s) found", len(juicenet.devices))
|
||||
|
||||
async def async_update_data():
|
||||
"""Update all device states from the JuiceNet API."""
|
||||
|
|
Loading…
Add table
Reference in a new issue