Make discovery on unsupported devices less noisy (#1291)

This commit is contained in:
Teemu R.
2024-11-21 19:22:54 +01:00
committed by GitHub
parent 5221fc07ca
commit f2ba23301a
4 changed files with 32 additions and 7 deletions

View File

@@ -164,7 +164,7 @@ def get_device_class_from_family(
and device_type.startswith("SMART.")
and not require_exact
):
_LOGGER.warning("Unknown SMART device with %s, using SmartDevice", device_type)
_LOGGER.debug("Unknown SMART device with %s, using SmartDevice", device_type)
cls = SmartDevice
return cls