mirror of
https://github.com/home-assistant/core.git
synced 2025-07-18 18:57:06 +00:00
Use debug/warning instead of info log level in components [f] (#125971)
This commit is contained in:
parent
ad467029c7
commit
5d14afad92
@ -89,7 +89,7 @@ def setup_platform(
|
|||||||
|
|
||||||
for account in balance_accounts:
|
for account in balance_accounts:
|
||||||
if config[CONF_ACCOUNTS] and account.iban not in account_config:
|
if config[CONF_ACCOUNTS] and account.iban not in account_config:
|
||||||
_LOGGER.info("Skipping account %s for bank %s", account.iban, fints_name)
|
_LOGGER.debug("Skipping account %s for bank %s", account.iban, fints_name)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if not (account_name := account_config.get(account.iban)):
|
if not (account_name := account_config.get(account.iban)):
|
||||||
@ -99,7 +99,7 @@ def setup_platform(
|
|||||||
|
|
||||||
for account in holdings_accounts:
|
for account in holdings_accounts:
|
||||||
if config[CONF_HOLDINGS] and account.accountnumber not in holdings_config:
|
if config[CONF_HOLDINGS] and account.accountnumber not in holdings_config:
|
||||||
_LOGGER.info(
|
_LOGGER.debug(
|
||||||
"Skipping holdings %s for bank %s", account.accountnumber, fints_name
|
"Skipping holdings %s for bank %s", account.accountnumber, fints_name
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
@ -108,7 +108,7 @@ def start_scanning(config, add_entities, client):
|
|||||||
def scan_completed_callback(scan_wizard, result, address, name):
|
def scan_completed_callback(scan_wizard, result, address, name):
|
||||||
"""Restart scan wizard to constantly check for new buttons."""
|
"""Restart scan wizard to constantly check for new buttons."""
|
||||||
if result == pyflic.ScanWizardResult.WizardSuccess:
|
if result == pyflic.ScanWizardResult.WizardSuccess:
|
||||||
_LOGGER.info("Found new button %s", address)
|
_LOGGER.debug("Found new button %s", address)
|
||||||
elif result != pyflic.ScanWizardResult.WizardFailedTimeout:
|
elif result != pyflic.ScanWizardResult.WizardFailedTimeout:
|
||||||
_LOGGER.warning(
|
_LOGGER.warning(
|
||||||
"Failed to connect to button %s. Reason: %s", address, result
|
"Failed to connect to button %s. Reason: %s", address, result
|
||||||
@ -132,7 +132,7 @@ def setup_button(
|
|||||||
timeout: int = config[CONF_TIMEOUT]
|
timeout: int = config[CONF_TIMEOUT]
|
||||||
ignored_click_types: list[str] | None = config.get(CONF_IGNORED_CLICK_TYPES)
|
ignored_click_types: list[str] | None = config.get(CONF_IGNORED_CLICK_TYPES)
|
||||||
button = FlicButton(hass, client, address, timeout, ignored_click_types)
|
button = FlicButton(hass, client, address, timeout, ignored_click_types)
|
||||||
_LOGGER.info("Connected to button %s", address)
|
_LOGGER.debug("Connected to button %s", address)
|
||||||
|
|
||||||
add_entities([button])
|
add_entities([button])
|
||||||
|
|
||||||
@ -203,7 +203,7 @@ class FlicButton(BinarySensorEntity):
|
|||||||
time_string,
|
time_string,
|
||||||
)
|
)
|
||||||
return True
|
return True
|
||||||
_LOGGER.info(
|
_LOGGER.debug(
|
||||||
"Queued %s allowed for %s. Time in queue was %s",
|
"Queued %s allowed for %s. Time in queue was %s",
|
||||||
click_type,
|
click_type,
|
||||||
self._address,
|
self._address,
|
||||||
|
@ -136,7 +136,7 @@ async def _async_migrate_unique_ids(hass: HomeAssistant, entry: ConfigEntry) ->
|
|||||||
new_unique_id = f"{unique_id}{entity_unique_id[len(unique_id):]}"
|
new_unique_id = f"{unique_id}{entity_unique_id[len(unique_id):]}"
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
_LOGGER.info(
|
_LOGGER.debug(
|
||||||
"Migrating unique_id from [%s] to [%s]",
|
"Migrating unique_id from [%s] to [%s]",
|
||||||
entity_unique_id,
|
entity_unique_id,
|
||||||
new_unique_id,
|
new_unique_id,
|
||||||
|
@ -89,6 +89,6 @@ async def async_migrate_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||||||
unique_id=None,
|
unique_id=None,
|
||||||
)
|
)
|
||||||
|
|
||||||
LOGGER.info("Migration to version %s successful", entry.version)
|
LOGGER.debug("Migration to version %s successful", entry.version)
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
@ -129,7 +129,7 @@ class HassFoscamCamera(FoscamEntity, Camera):
|
|||||||
)
|
)
|
||||||
|
|
||||||
if ret == -3:
|
if ret == -3:
|
||||||
LOGGER.info(
|
LOGGER.warning(
|
||||||
(
|
(
|
||||||
"Can't get motion detection status, camera %s configured with"
|
"Can't get motion detection status, camera %s configured with"
|
||||||
" non-admin user"
|
" non-admin user"
|
||||||
@ -171,7 +171,7 @@ class HassFoscamCamera(FoscamEntity, Camera):
|
|||||||
|
|
||||||
if ret != 0:
|
if ret != 0:
|
||||||
if ret == -3:
|
if ret == -3:
|
||||||
LOGGER.info(
|
LOGGER.warning(
|
||||||
(
|
(
|
||||||
"Can't set motion detection status, camera %s configured"
|
"Can't set motion detection status, camera %s configured"
|
||||||
" with non-admin user"
|
" with non-admin user"
|
||||||
@ -197,7 +197,7 @@ class HassFoscamCamera(FoscamEntity, Camera):
|
|||||||
|
|
||||||
if ret != 0:
|
if ret != 0:
|
||||||
if ret == -3:
|
if ret == -3:
|
||||||
LOGGER.info(
|
LOGGER.warning(
|
||||||
(
|
(
|
||||||
"Can't set motion detection status, camera %s configured"
|
"Can't set motion detection status, camera %s configured"
|
||||||
" with non-admin user"
|
" with non-admin user"
|
||||||
|
@ -225,7 +225,7 @@ class FreeboxRouter:
|
|||||||
fbx_raids: list[dict[str, Any]] = await self._api.storage.get_raids() or []
|
fbx_raids: list[dict[str, Any]] = await self._api.storage.get_raids() or []
|
||||||
except HttpRequestError:
|
except HttpRequestError:
|
||||||
self.supports_raid = False
|
self.supports_raid = False
|
||||||
_LOGGER.info(
|
_LOGGER.warning(
|
||||||
"Router %s API does not support RAID",
|
"Router %s API does not support RAID",
|
||||||
self.name,
|
self.name,
|
||||||
)
|
)
|
||||||
|
@ -79,7 +79,7 @@ def device_filter_out_from_trackers(
|
|||||||
|
|
||||||
def _ha_is_stopping(activity: str) -> None:
|
def _ha_is_stopping(activity: str) -> None:
|
||||||
"""Inform that HA is stopping."""
|
"""Inform that HA is stopping."""
|
||||||
_LOGGER.info("Cannot execute %s: HomeAssistant is shutting down", activity)
|
_LOGGER.warning("Cannot execute %s: HomeAssistant is shutting down", activity)
|
||||||
|
|
||||||
|
|
||||||
class ClassSetupMissing(Exception):
|
class ClassSetupMissing(Exception):
|
||||||
@ -658,7 +658,7 @@ class FritzBoxTools(DataUpdateCoordinator[UpdateCoordinatorDataType]):
|
|||||||
entity.domain == DEVICE_TRACKER_DOMAIN
|
entity.domain == DEVICE_TRACKER_DOMAIN
|
||||||
or "_internet_access" in entity.unique_id
|
or "_internet_access" in entity.unique_id
|
||||||
) and entry_mac not in device_hosts:
|
) and entry_mac not in device_hosts:
|
||||||
_LOGGER.info("Removing orphan entity entry %s", entity.entity_id)
|
_LOGGER.debug("Removing orphan entity entry %s", entity.entity_id)
|
||||||
entity_reg.async_remove(entity.entity_id)
|
entity_reg.async_remove(entity.entity_id)
|
||||||
|
|
||||||
device_reg = dr.async_get(self.hass)
|
device_reg = dr.async_get(self.hass)
|
||||||
|
@ -29,14 +29,14 @@ async def async_setup_entry(hass: HomeAssistant, entry: FritzboxConfigEntry) ->
|
|||||||
and "_temperature" not in entry.unique_id
|
and "_temperature" not in entry.unique_id
|
||||||
):
|
):
|
||||||
new_unique_id = f"{entry.unique_id}_temperature"
|
new_unique_id = f"{entry.unique_id}_temperature"
|
||||||
LOGGER.info(
|
LOGGER.debug(
|
||||||
"Migrating unique_id [%s] to [%s]", entry.unique_id, new_unique_id
|
"Migrating unique_id [%s] to [%s]", entry.unique_id, new_unique_id
|
||||||
)
|
)
|
||||||
return {"new_unique_id": new_unique_id}
|
return {"new_unique_id": new_unique_id}
|
||||||
|
|
||||||
if entry.domain == BINARY_SENSOR_DOMAIN and "_" not in entry.unique_id:
|
if entry.domain == BINARY_SENSOR_DOMAIN and "_" not in entry.unique_id:
|
||||||
new_unique_id = f"{entry.unique_id}_alarm"
|
new_unique_id = f"{entry.unique_id}_alarm"
|
||||||
LOGGER.info(
|
LOGGER.debug(
|
||||||
"Migrating unique_id [%s] to [%s]", entry.unique_id, new_unique_id
|
"Migrating unique_id [%s] to [%s]", entry.unique_id, new_unique_id
|
||||||
)
|
)
|
||||||
return {"new_unique_id": new_unique_id}
|
return {"new_unique_id": new_unique_id}
|
||||||
|
@ -62,7 +62,7 @@ class FritzBoxPhonebook:
|
|||||||
for name, nrs in self.phonebook_dict.items()
|
for name, nrs in self.phonebook_dict.items()
|
||||||
for nr in nrs
|
for nr in nrs
|
||||||
}
|
}
|
||||||
_LOGGER.info("Fritz!Box phone book successfully updated")
|
_LOGGER.debug("Fritz!Box phone book successfully updated")
|
||||||
|
|
||||||
def get_phonebook_ids(self) -> list[int]:
|
def get_phonebook_ids(self) -> list[int]:
|
||||||
"""Return list of phonebook ids."""
|
"""Return list of phonebook ids."""
|
||||||
|
@ -118,7 +118,7 @@ class AFSAPIDevice(MediaPlayerEntity):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if not self._attr_available:
|
if not self._attr_available:
|
||||||
_LOGGER.info(
|
_LOGGER.warning(
|
||||||
"Reconnected to %s",
|
"Reconnected to %s",
|
||||||
self.name or afsapi.webfsapi_endpoint,
|
self.name or afsapi.webfsapi_endpoint,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user