Use debug instead of info log level in components [a] (#125944)

* Use debug instead of info log level in components [a]

* Process code review comments
This commit is contained in:
Jan-Philipp Benecke 2024-09-14 15:24:55 +02:00 committed by GitHub
parent e92d9317aa
commit 2fa6370dc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 16 additions and 17 deletions

View file

@ -51,7 +51,6 @@ class ActiontecDeviceScanner(DeviceScanner):
self.last_results: list[Device] = []
data = self.get_actiontec_data()
self.success_init = data is not None
_LOGGER.info("Scanner initialized")
def scan_devices(self) -> list[str]:
"""Scan for new devices and return a list with found device IDs."""
@ -70,7 +69,7 @@ class ActiontecDeviceScanner(DeviceScanner):
Return boolean if scanning successful.
"""
_LOGGER.info("Scanning")
_LOGGER.debug("Scanning")
if not self.success_init:
return False
@ -79,7 +78,7 @@ class ActiontecDeviceScanner(DeviceScanner):
self.last_results = [
device for device in actiontec_data if device.timevalid > -60
]
_LOGGER.info("Scan successful")
_LOGGER.debug("Scan successful")
return True
def get_actiontec_data(self) -> list[Device] | None:

View file

@ -130,7 +130,7 @@ class AdaxConfigFlow(ConfigFlow, domain=DOMAIN):
async_get_clientsession(self.hass), account_id, password
)
if token is None:
_LOGGER.info("Adax: Failed to login to retrieve token")
_LOGGER.debug("Adax: Failed to login to retrieve token")
errors["base"] = "cannot_connect"
return self.async_show_form(
step_id="cloud",

View file

@ -131,7 +131,7 @@ class AndroidTVFlowHandler(ConfigFlow, domain=DOMAIN):
return RESULT_CONN_ERROR, None
dev_prop = aftv.device_properties
_LOGGER.info(
_LOGGER.debug(
"Android device at %s: %s = %r, %s = %r",
user_input[CONF_HOST],
PROP_ETHMAC,

View file

@ -67,7 +67,7 @@ def adb_decorator[_ADBDeviceT: AndroidTVEntity, **_P, _R](
return await func(self, *args, **kwargs)
except LockNotAcquiredException:
# If the ADB lock could not be acquired, skip this command
_LOGGER.info(
_LOGGER.debug(
(
"ADB command %s not executed because the connection is"
" currently in use"

View file

@ -306,7 +306,7 @@ class ADBDevice(AndroidTVEntity, MediaPlayerEntity):
msg,
title="Android Debug Bridge",
)
_LOGGER.info("%s", msg)
_LOGGER.debug("%s", msg)
@adb_decorator()
async def service_download(self, device_path: str, local_path: str) -> None:

View file

@ -375,7 +375,7 @@ class AppleTVManager(DeviceListener):
f"Protocol(s) {missing_protocols_str} not yet found for {name},"
" waiting for discovery."
)
_LOGGER.info(
_LOGGER.debug(
"Protocol(s) %s not yet found for %s, trying later",
missing_protocols_str,
name,
@ -394,7 +394,7 @@ class AppleTVManager(DeviceListener):
self._connection_attempts = 0
if self._connection_was_lost:
_LOGGER.info(
_LOGGER.warning(
'Connection was re-established to device "%s"',
self.config_entry.data[CONF_NAME],
)

View file

@ -85,7 +85,7 @@ class AppleTVRemote(AppleTVEntity, RemoteEntity):
if not attr_value:
raise ValueError("Command not found. Exiting sequence")
_LOGGER.info("Sending command %s", single_command)
_LOGGER.debug("Sending command %s", single_command)
if hold_secs >= 1:
await attr_value(action=InputAction.Hold)

View file

@ -159,7 +159,7 @@ class AprsListenerThread(threading.Thread):
self.ais.set_filter(self.server_filter)
try:
_LOGGER.info(
_LOGGER.debug(
"Opening connection to %s with callsign %s", self.host, self.callsign
)
self.ais.connect()
@ -170,7 +170,7 @@ class AprsListenerThread(threading.Thread):
except (AprsConnectionError, LoginError) as err:
self.start_complete(False, str(err))
except OSError:
_LOGGER.info(
_LOGGER.debug(
"Closing connection to %s with callsign %s", self.host, self.callsign
)

View file

@ -290,7 +290,7 @@ class AsusWrtRouter:
if self._connect_error:
self._connect_error = False
_LOGGER.info("Reconnected to ASUS router %s", self.host)
_LOGGER.warning("Reconnected to ASUS router %s", self.host)
self._connected_devices = len(wrt_devices)
consider_home: int = self._options.get(

View file

@ -45,7 +45,7 @@ def validate_and_connect(
ret[ATTR_SERIAL_NUMBER] = client.serial_number()
ret[ATTR_MODEL] = f"{client.version()} ({client.pn()})"
ret[ATTR_FIRMWARE] = client.firmware(1)
_LOGGER.info("Returning device info=%s", ret)
_LOGGER.debug("Returning device info=%s", ret)
except AuroraError:
_LOGGER.warning("Could not connect to device=%s", comport)
raise

View file

@ -78,9 +78,9 @@ class AuroraAbbDataUpdateCoordinator(DataUpdateCoordinator[dict[str, float]]):
finally:
if self.available != self.available_prev:
if self.available:
_LOGGER.info("Communication with %s back online", self.name)
_LOGGER.warning("Communication with %s back online", self.name)
else:
_LOGGER.info(
_LOGGER.warning(
"Communication with %s lost",
self.name,
)

View file

@ -52,6 +52,6 @@ async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry) ->
# Home Assistant 2023.2
hass.config_entries.async_update_entry(config_entry, version=3)
_LOGGER.info("Migration to version %s successful", config_entry.version)
_LOGGER.debug("Migration to version %s successful", config_entry.version)
return True